diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/date.c | 1 | ||||
-rw-r--r-- | coreutils/df.c | 1 | ||||
-rw-r--r-- | coreutils/ls.c | 1 | ||||
-rw-r--r-- | coreutils/mkfifo.c | 1 | ||||
-rw-r--r-- | coreutils/mknod.c | 1 | ||||
-rw-r--r-- | coreutils/printf.c | 1 | ||||
-rw-r--r-- | coreutils/tail.c | 1 | ||||
-rw-r--r-- | coreutils/test.c | 1 | ||||
-rw-r--r-- | coreutils/touch.c | 1 |
9 files changed, 1 insertions, 8 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index e0f0f3129..571a55625 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <unistd.h> | 31 | #include <unistd.h> |
32 | #include <time.h> | 32 | #include <time.h> |
33 | #include <stdio.h> | 33 | #include <stdio.h> |
34 | #include <getopt.h> | ||
34 | 35 | ||
35 | 36 | ||
36 | /* This 'date' command supports only 2 time setting formats, | 37 | /* This 'date' command supports only 2 time setting formats, |
diff --git a/coreutils/df.c b/coreutils/df.c index 714c79965..d8f8b7739 100644 --- a/coreutils/df.c +++ b/coreutils/df.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include "internal.h" | 25 | #include "internal.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | #include <mntent.h> | 27 | #include <mntent.h> |
28 | #include <sys/stat.h> | ||
29 | #include <sys/vfs.h> | 28 | #include <sys/vfs.h> |
30 | 29 | ||
31 | extern const char mtab_file[]; /* Defined in utility.c */ | 30 | extern const char mtab_file[]; /* Defined in utility.c */ |
diff --git a/coreutils/ls.c b/coreutils/ls.c index e56e3bcfb..d7455f427 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -50,7 +50,6 @@ | |||
50 | 50 | ||
51 | #include "internal.h" | 51 | #include "internal.h" |
52 | # include <sys/types.h> | 52 | # include <sys/types.h> |
53 | #include <sys/stat.h> | ||
54 | #include <stdio.h> | 53 | #include <stdio.h> |
55 | #include <unistd.h> | 54 | #include <unistd.h> |
56 | #include <dirent.h> | 55 | #include <dirent.h> |
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c index 3db17bbbc..5d4126ac0 100644 --- a/coreutils/mkfifo.c +++ b/coreutils/mkfifo.c | |||
@@ -23,7 +23,6 @@ | |||
23 | #include "internal.h" | 23 | #include "internal.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <sys/types.h> | 25 | #include <sys/types.h> |
26 | #include <sys/stat.h> | ||
27 | #include <errno.h> | 26 | #include <errno.h> |
28 | 27 | ||
29 | extern int mkfifo_main(int argc, char **argv) | 28 | extern int mkfifo_main(int argc, char **argv) |
diff --git a/coreutils/mknod.c b/coreutils/mknod.c index b51c8f3e3..b815aa198 100644 --- a/coreutils/mknod.c +++ b/coreutils/mknod.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <errno.h> | 25 | #include <errno.h> |
26 | #include <sys/types.h> | 26 | #include <sys/types.h> |
27 | #include <sys/stat.h> | ||
28 | #include <fcntl.h> | 27 | #include <fcntl.h> |
29 | #include <unistd.h> | 28 | #include <unistd.h> |
30 | 29 | ||
diff --git a/coreutils/printf.c b/coreutils/printf.c index 6a87fc319..94b809348 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c | |||
@@ -51,7 +51,6 @@ | |||
51 | #include <unistd.h> | 51 | #include <unistd.h> |
52 | #include <stdio.h> | 52 | #include <stdio.h> |
53 | #include <sys/types.h> | 53 | #include <sys/types.h> |
54 | #include <sys/stat.h> | ||
55 | #include <string.h> | 54 | #include <string.h> |
56 | #include <errno.h> | 55 | #include <errno.h> |
57 | #include <stdlib.h> | 56 | #include <stdlib.h> |
diff --git a/coreutils/tail.c b/coreutils/tail.c index 627373bfd..6c4a6f468 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c | |||
@@ -32,7 +32,6 @@ | |||
32 | 32 | ||
33 | */ | 33 | */ |
34 | #include <sys/types.h> | 34 | #include <sys/types.h> |
35 | #include <sys/stat.h> | ||
36 | #include <fcntl.h> | 35 | #include <fcntl.h> |
37 | #include <stdio.h> | 36 | #include <stdio.h> |
38 | #include <stdlib.h> | 37 | #include <stdlib.h> |
diff --git a/coreutils/test.c b/coreutils/test.c index 818b3db12..6dde718c7 100644 --- a/coreutils/test.c +++ b/coreutils/test.c | |||
@@ -33,7 +33,6 @@ | |||
33 | 33 | ||
34 | #include "internal.h" | 34 | #include "internal.h" |
35 | #include <sys/types.h> | 35 | #include <sys/types.h> |
36 | #include <sys/stat.h> | ||
37 | #include <unistd.h> | 36 | #include <unistd.h> |
38 | #include <ctype.h> | 37 | #include <ctype.h> |
39 | #include <errno.h> | 38 | #include <errno.h> |
diff --git a/coreutils/touch.c b/coreutils/touch.c index afdd265f7..464aedb55 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c | |||
@@ -25,7 +25,6 @@ | |||
25 | #include "internal.h" | 25 | #include "internal.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | #include <sys/types.h> | 27 | #include <sys/types.h> |
28 | #include <sys/stat.h> | ||
29 | #include <fcntl.h> | 28 | #include <fcntl.h> |
30 | #include <utime.h> | 29 | #include <utime.h> |
31 | #include <errno.h> | 30 | #include <errno.h> |