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 | |
parent | 706f8f6de5d622a9094f7e694982c935675e578c (diff) | |
download | busybox-59c6baedf7b017819965fd203e52c71e2c4d6c33.tar.gz |
just include fcntl.h not sys/fcntl.h
-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 @@ #include <stdlib.h> #include <string.h> #include <sys/mtio.h> -#include <sys/fcntl.h> +#include <fcntl.h> #include "busybox.h" struct mt_opcodes { |