diff options
Diffstat (limited to 'miscutils/mt.c')
-rw-r--r-- | miscutils/mt.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/miscutils/mt.c b/miscutils/mt.c index 2720f7eab..f562a91a2 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c @@ -4,11 +4,7 @@ */ #include "busybox.h" -#include <stdio.h> -#include <stdlib.h> -#include <string.h> #include <sys/mtio.h> -#include <fcntl.h> struct mt_opcodes { char *name; @@ -105,7 +101,7 @@ int mt_main(int argc, char **argv) break; } - fd = bb_xopen3(file, mode, 0); + fd = xopen3(file, mode, 0); switch (code->value) { case MTTELL: |