aboutsummaryrefslogtreecommitdiff
path: root/miscutils/mt.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/mt.c')
-rw-r--r--miscutils/mt.c6
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 @@
4 */ 4 */
5 5
6#include "busybox.h" 6#include "busybox.h"
7#include <stdio.h>
8#include <stdlib.h>
9#include <string.h>
10#include <sys/mtio.h> 7#include <sys/mtio.h>
11#include <fcntl.h>
12 8
13struct mt_opcodes { 9struct mt_opcodes {
14 char *name; 10 char *name;
@@ -105,7 +101,7 @@ int mt_main(int argc, char **argv)
105 break; 101 break;
106 } 102 }
107 103
108 fd = bb_xopen3(file, mode, 0); 104 fd = xopen3(file, mode, 0);
109 105
110 switch (code->value) { 106 switch (code->value) {
111 case MTTELL: 107 case MTTELL: