diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-04-29 04:43:50 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-04-29 04:43:50 +0000 |
commit | 59c6baedf7b017819965fd203e52c71e2c4d6c33 (patch) | |
tree | 8c3024680c8b9f564ffedc82f71ca185a3f92070 /miscutils | |
parent | 706f8f6de5d622a9094f7e694982c935675e578c (diff) | |
download | busybox-w32-59c6baedf7b017819965fd203e52c71e2c4d6c33.tar.gz busybox-w32-59c6baedf7b017819965fd203e52c71e2c4d6c33.tar.bz2 busybox-w32-59c6baedf7b017819965fd203e52c71e2c4d6c33.zip |
just include fcntl.h not sys/fcntl.h
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/mt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/mt.c b/miscutils/mt.c index 368fc66b9..9f2c5c335 100644 --- a/miscutils/mt.c +++ b/miscutils/mt.c | |||
@@ -3,7 +3,7 @@ | |||
3 | #include <stdlib.h> | 3 | #include <stdlib.h> |
4 | #include <string.h> | 4 | #include <string.h> |
5 | #include <sys/mtio.h> | 5 | #include <sys/mtio.h> |
6 | #include <sys/fcntl.h> | 6 | #include <fcntl.h> |
7 | #include "busybox.h" | 7 | #include "busybox.h" |
8 | 8 | ||
9 | struct mt_opcodes { | 9 | struct mt_opcodes { |