diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-12 11:38:09 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-12 11:38:09 +0000 |
commit | 1c275de6a2b332d49355d02d3d8650aea33f1b87 (patch) | |
tree | c8f94975d13632755d452bb9e7ac18a022dbb7be | |
parent | 87210b5f4b92660b737f4c3e56b44c1c19a37fac (diff) | |
download | busybox-w32-1c275de6a2b332d49355d02d3d8650aea33f1b87.tar.gz busybox-w32-1c275de6a2b332d49355d02d3d8650aea33f1b87.tar.bz2 busybox-w32-1c275de6a2b332d49355d02d3d8650aea33f1b87.zip |
more busyboxes
-rw-r--r-- | e2fsprogs/e2fsbb.h | 1 | ||||
-rw-r--r-- | e2fsprogs/tune2fs.c | 12 |
2 files changed, 4 insertions, 9 deletions
diff --git a/e2fsprogs/e2fsbb.h b/e2fsprogs/e2fsbb.h index 7e4d1ab48..570d536f2 100644 --- a/e2fsprogs/e2fsbb.h +++ b/e2fsprogs/e2fsbb.h | |||
@@ -39,7 +39,6 @@ typedef long errcode_t; | |||
39 | #define ENABLE_HTREE 1 | 39 | #define ENABLE_HTREE 1 |
40 | #define HAVE_ERRNO_H 1 | 40 | #define HAVE_ERRNO_H 1 |
41 | #define HAVE_EXT2_IOCTLS 1 | 41 | #define HAVE_EXT2_IOCTLS 1 |
42 | #define HAVE_GETOPT_H 1 | ||
43 | #define HAVE_INTTYPES_H 1 | 42 | #define HAVE_INTTYPES_H 1 |
44 | #define HAVE_LINUX_FD_H 1 | 43 | #define HAVE_LINUX_FD_H 1 |
45 | #define HAVE_MALLOC_H 1 | 44 | #define HAVE_MALLOC_H 1 |
diff --git a/e2fsprogs/tune2fs.c b/e2fsprogs/tune2fs.c index ccbbc7868..0519c0981 100644 --- a/e2fsprogs/tune2fs.c +++ b/e2fsprogs/tune2fs.c | |||
@@ -26,14 +26,6 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | #include <fcntl.h> | 28 | #include <fcntl.h> |
29 | #include <grp.h> | ||
30 | #ifdef HAVE_GETOPT_H | ||
31 | #include <getopt.h> | ||
32 | #else | ||
33 | extern char *optarg; | ||
34 | extern int optind; | ||
35 | #endif | ||
36 | #include <pwd.h> | ||
37 | #include <stdio.h> | 29 | #include <stdio.h> |
38 | #include <stdlib.h> | 30 | #include <stdlib.h> |
39 | #include <string.h> | 31 | #include <string.h> |
@@ -50,6 +42,10 @@ extern int optind; | |||
50 | #include "util.h" | 42 | #include "util.h" |
51 | #include "blkid/blkid.h" | 43 | #include "blkid/blkid.h" |
52 | 44 | ||
45 | #include "busybox.h" | ||
46 | #include "grp_.h" | ||
47 | #include "pwd_.h" | ||
48 | |||
53 | static char * device_name = NULL; | 49 | static char * device_name = NULL; |
54 | static char * new_label, *new_last_mounted, *new_UUID; | 50 | static char * new_label, *new_last_mounted, *new_UUID; |
55 | static char * io_options; | 51 | static char * io_options; |