diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cut.c | 1 | ||||
-rw-r--r-- | coreutils/date.c | 1 | ||||
-rw-r--r-- | coreutils/dos2unix.c | 1 | ||||
-rw-r--r-- | coreutils/env.c | 2 | ||||
-rw-r--r-- | coreutils/install.c | 2 | ||||
-rw-r--r-- | coreutils/ls.c | 2 | ||||
-rw-r--r-- | coreutils/mkdir.c | 2 | ||||
-rw-r--r-- | coreutils/mv.c | 2 | ||||
-rw-r--r-- | coreutils/stat.c | 2 | ||||
-rw-r--r-- | coreutils/sum.c | 1 | ||||
-rw-r--r-- | coreutils/uudecode.c | 2 | ||||
-rw-r--r-- | coreutils/uuencode.c | 1 |
12 files changed, 7 insertions, 12 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c index f65754e63..f9c72ca81 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c | |||
@@ -23,7 +23,6 @@ | |||
23 | 23 | ||
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <stdlib.h> | 25 | #include <stdlib.h> |
26 | #include <getopt.h> | ||
27 | #include <unistd.h> | 26 | #include <unistd.h> |
28 | #include <string.h> | 27 | #include <string.h> |
29 | #include <limits.h> | 28 | #include <limits.h> |
diff --git a/coreutils/date.c b/coreutils/date.c index 0488b2de3..9583a0036 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -29,7 +29,6 @@ | |||
29 | #include <time.h> | 29 | #include <time.h> |
30 | #include <stdio.h> | 30 | #include <stdio.h> |
31 | #include <string.h> | 31 | #include <string.h> |
32 | #include <getopt.h> | ||
33 | #include "busybox.h" | 32 | #include "busybox.h" |
34 | 33 | ||
35 | 34 | ||
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c index 3488f3354..0c419aca7 100644 --- a/coreutils/dos2unix.c +++ b/coreutils/dos2unix.c | |||
@@ -28,7 +28,6 @@ | |||
28 | */ | 28 | */ |
29 | 29 | ||
30 | #include <string.h> | 30 | #include <string.h> |
31 | #include <getopt.h> | ||
32 | #include <unistd.h> | 31 | #include <unistd.h> |
33 | #include <stdint.h> | 32 | #include <stdint.h> |
34 | #include <fcntl.h> | 33 | #include <fcntl.h> |
diff --git a/coreutils/env.c b/coreutils/env.c index 70cef6588..1a8ad7c78 100644 --- a/coreutils/env.c +++ b/coreutils/env.c | |||
@@ -47,7 +47,7 @@ | |||
47 | #include <stdlib.h> | 47 | #include <stdlib.h> |
48 | #include <errno.h> | 48 | #include <errno.h> |
49 | #include <unistd.h> | 49 | #include <unistd.h> |
50 | #include <getopt.h> | 50 | #include <getopt.h> /* struct option */ |
51 | #include "busybox.h" | 51 | #include "busybox.h" |
52 | 52 | ||
53 | 53 | ||
diff --git a/coreutils/install.c b/coreutils/install.c index e22dda6f9..74e1d9acd 100644 --- a/coreutils/install.c +++ b/coreutils/install.c | |||
@@ -23,10 +23,10 @@ | |||
23 | #include <sys/stat.h> | 23 | #include <sys/stat.h> |
24 | #include <sys/types.h> | 24 | #include <sys/types.h> |
25 | #include <errno.h> | 25 | #include <errno.h> |
26 | #include <getopt.h> | ||
27 | #include <stdlib.h> | 26 | #include <stdlib.h> |
28 | #include <string.h> | 27 | #include <string.h> |
29 | #include <unistd.h> | 28 | #include <unistd.h> |
29 | #include <getopt.h> /* struct option */ | ||
30 | 30 | ||
31 | #include "busybox.h" | 31 | #include "busybox.h" |
32 | #include "libcoreutils/coreutils.h" | 32 | #include "libcoreutils/coreutils.h" |
diff --git a/coreutils/ls.c b/coreutils/ls.c index ac2557a55..4dfa9f507 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -60,7 +60,7 @@ enum { | |||
60 | #include <fcntl.h> | 60 | #include <fcntl.h> |
61 | #include <signal.h> | 61 | #include <signal.h> |
62 | #include <termios.h> | 62 | #include <termios.h> |
63 | #include <getopt.h> | 63 | #include <getopt.h> /* struct option */ |
64 | #include <sys/ioctl.h> | 64 | #include <sys/ioctl.h> |
65 | #include <sys/sysmacros.h> /* major() and minor() */ | 65 | #include <sys/sysmacros.h> /* major() and minor() */ |
66 | #include "busybox.h" | 66 | #include "busybox.h" |
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index 50364f17f..e24ef4f89 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | #include <stdlib.h> | 32 | #include <stdlib.h> |
33 | #include <unistd.h> | 33 | #include <unistd.h> |
34 | #include <getopt.h> | 34 | #include <getopt.h> /* struct option */ |
35 | #include "busybox.h" | 35 | #include "busybox.h" |
36 | 36 | ||
37 | static const struct option mkdir_long_options[] = { | 37 | static const struct option mkdir_long_options[] = { |
diff --git a/coreutils/mv.c b/coreutils/mv.c index 43a8e6d7d..aef1ed19a 100644 --- a/coreutils/mv.c +++ b/coreutils/mv.c | |||
@@ -31,7 +31,7 @@ | |||
31 | #include <dirent.h> | 31 | #include <dirent.h> |
32 | #include <errno.h> | 32 | #include <errno.h> |
33 | #include <stdlib.h> | 33 | #include <stdlib.h> |
34 | #include <getopt.h> | 34 | #include <getopt.h> /* struct option */ |
35 | #include "busybox.h" | 35 | #include "busybox.h" |
36 | #include "libcoreutils/coreutils.h" | 36 | #include "libcoreutils/coreutils.h" |
37 | 37 | ||
diff --git a/coreutils/stat.c b/coreutils/stat.c index 4afe249c0..138cc9e8b 100644 --- a/coreutils/stat.c +++ b/coreutils/stat.c | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <grp.h> | 30 | #include <grp.h> |
31 | #include <sys/vfs.h> | 31 | #include <sys/vfs.h> |
32 | #include <time.h> | 32 | #include <time.h> |
33 | #include <getopt.h> | 33 | #include <getopt.h> /* optind */ |
34 | #include <sys/stat.h> | 34 | #include <sys/stat.h> |
35 | #include <sys/statfs.h> | 35 | #include <sys/statfs.h> |
36 | #include <sys/statvfs.h> | 36 | #include <sys/statvfs.h> |
diff --git a/coreutils/sum.c b/coreutils/sum.c index 3b4941d28..0a9c9734f 100644 --- a/coreutils/sum.c +++ b/coreutils/sum.c | |||
@@ -18,7 +18,6 @@ | |||
18 | #include <sys/stat.h> | 18 | #include <sys/stat.h> |
19 | #include <fcntl.h> | 19 | #include <fcntl.h> |
20 | #include <unistd.h> | 20 | #include <unistd.h> |
21 | #include <getopt.h> | ||
22 | 21 | ||
23 | #include "busybox.h" | 22 | #include "busybox.h" |
24 | 23 | ||
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index 57d4e8371..6167c9fad 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c | |||
@@ -24,7 +24,7 @@ | |||
24 | 24 | ||
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | #include <errno.h> | 26 | #include <errno.h> |
27 | #include <getopt.h> | 27 | #include <getopt.h> /* optind */ |
28 | #include <string.h> | 28 | #include <string.h> |
29 | #include <stdlib.h> | 29 | #include <stdlib.h> |
30 | 30 | ||
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index 42f629f48..2660f4a19 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c | |||
@@ -19,7 +19,6 @@ | |||
19 | * along with this program; if not, write to the Free Software | 19 | * along with this program; if not, write to the Free Software |
20 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. | 20 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21 | */ | 21 | */ |
22 | #include <getopt.h> | ||
23 | #include <stdio.h> | 22 | #include <stdio.h> |
24 | #include <string.h> | 23 | #include <string.h> |
25 | #include <stdlib.h> | 24 | #include <stdlib.h> |