diff options
author | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-29 04:43:50 +0000 |
---|---|---|
committer | vapier <vapier@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-29 04:43:50 +0000 |
commit | 003de45239ca88bf190038b01ec98427a4ba35a4 (patch) | |
tree | 8c3024680c8b9f564ffedc82f71ca185a3f92070 | |
parent | 7c7a9d02a0e8578d51ed10da6973dabacb1e6305 (diff) | |
download | busybox-w32-003de45239ca88bf190038b01ec98427a4ba35a4.tar.gz busybox-w32-003de45239ca88bf190038b01ec98427a4ba35a4.tar.bz2 busybox-w32-003de45239ca88bf190038b01ec98427a4ba35a4.zip |
just include fcntl.h not sys/fcntl.h
git-svn-id: svn://busybox.net/trunk/busybox@14963 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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 { |