diff options
author | Eric Andersen <andersen@codepoet.org> | 2000-09-25 21:45:58 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2000-09-25 21:45:58 +0000 |
commit | 3570a34de46b1f7dedd16999bb1687e2d6b55d40 (patch) | |
tree | 7fa09f8a448d71c604288ec50a1777e657f57db5 /coreutils | |
parent | caffb6eff0e33a80da630963f21346c21186da39 (diff) | |
download | busybox-w32-3570a34de46b1f7dedd16999bb1687e2d6b55d40.tar.gz busybox-w32-3570a34de46b1f7dedd16999bb1687e2d6b55d40.tar.bz2 busybox-w32-3570a34de46b1f7dedd16999bb1687e2d6b55d40.zip |
Renamed "internal.h" to the more sensible "busybox.h".
-Erik
Diffstat (limited to 'coreutils')
44 files changed, 49 insertions, 49 deletions
diff --git a/coreutils/basename.c b/coreutils/basename.c index 5b83eef49..4d9fc4ec0 100644 --- a/coreutils/basename.c +++ b/coreutils/basename.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | 26 | ||
27 | extern int basename_main(int argc, char **argv) | 27 | extern int basename_main(int argc, char **argv) |
diff --git a/coreutils/cat.c b/coreutils/cat.c index d47f814cf..51f1d27a6 100644 --- a/coreutils/cat.c +++ b/coreutils/cat.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | 26 | ||
27 | extern int cat_main(int argc, char **argv) | 27 | extern int cat_main(int argc, char **argv) |
diff --git a/coreutils/chroot.c b/coreutils/chroot.c index e8ce53973..f0a298104 100644 --- a/coreutils/chroot.c +++ b/coreutils/chroot.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdlib.h> | 26 | #include <stdlib.h> |
27 | #include <stdio.h> | 27 | #include <stdio.h> |
28 | #include <errno.h> | 28 | #include <errno.h> |
diff --git a/coreutils/cut.c b/coreutils/cut.c index fec52d3d4..1d36a4e88 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c | |||
@@ -26,7 +26,7 @@ | |||
26 | #include <string.h> | 26 | #include <string.h> |
27 | #include <ctype.h> | 27 | #include <ctype.h> |
28 | #include <errno.h> | 28 | #include <errno.h> |
29 | #include "internal.h" | 29 | #include "busybox.h" |
30 | 30 | ||
31 | 31 | ||
32 | /* globals from other files */ | 32 | /* globals from other files */ |
diff --git a/coreutils/date.c b/coreutils/date.c index 571a55625..2e99aea19 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #define BB_DECLARE_EXTERN | 24 | #define BB_DECLARE_EXTERN |
25 | #define bb_need_invalid_date | 25 | #define bb_need_invalid_date |
26 | #define bb_need_memory_exhausted | 26 | #define bb_need_memory_exhausted |
diff --git a/coreutils/dd.c b/coreutils/dd.c index 697cb7e58..01441c314 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -29,7 +29,7 @@ | |||
29 | */ | 29 | */ |
30 | 30 | ||
31 | 31 | ||
32 | #include "internal.h" | 32 | #include "busybox.h" |
33 | #include <features.h> | 33 | #include <features.h> |
34 | #include <stdio.h> | 34 | #include <stdio.h> |
35 | #include <fcntl.h> | 35 | #include <fcntl.h> |
diff --git a/coreutils/df.c b/coreutils/df.c index d8f8b7739..8d6242c56 100644 --- a/coreutils/df.c +++ b/coreutils/df.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | #include <mntent.h> | 27 | #include <mntent.h> |
28 | #include <sys/vfs.h> | 28 | #include <sys/vfs.h> |
diff --git a/coreutils/dirname.c b/coreutils/dirname.c index e63fef30b..23f46be40 100644 --- a/coreutils/dirname.c +++ b/coreutils/dirname.c | |||
@@ -20,7 +20,7 @@ | |||
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 | */ | 22 | */ |
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | 25 | ||
26 | extern int dirname_main(int argc, char **argv) | 26 | extern int dirname_main(int argc, char **argv) |
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c index 9634687eb..c9f783f1a 100644 --- a/coreutils/dos2unix.c +++ b/coreutils/dos2unix.c | |||
@@ -22,7 +22,7 @@ | |||
22 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 22 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | 27 | ||
28 | int dos2unix_main( int argc, char **argv ) { | 28 | int dos2unix_main( int argc, char **argv ) { |
diff --git a/coreutils/du.c b/coreutils/du.c index 5a08abb78..408ad994c 100644 --- a/coreutils/du.c +++ b/coreutils/du.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #define BB_DECLARE_EXTERN | 26 | #define BB_DECLARE_EXTERN |
27 | #define bb_need_name_too_long | 27 | #define bb_need_name_too_long |
28 | #include "messages.c" | 28 | #include "messages.c" |
@@ -163,7 +163,7 @@ int du_main(int argc, char **argv) | |||
163 | return(0); | 163 | return(0); |
164 | } | 164 | } |
165 | 165 | ||
166 | /* $Id: du.c,v 1.24 2000/07/17 16:17:19 proski Exp $ */ | 166 | /* $Id: du.c,v 1.25 2000/09/25 21:45:57 andersen Exp $ */ |
167 | /* | 167 | /* |
168 | Local Variables: | 168 | Local Variables: |
169 | c-file-style: "linux" | 169 | c-file-style: "linux" |
diff --git a/coreutils/echo.c b/coreutils/echo.c index 924cdd40c..6890d95e0 100644 --- a/coreutils/echo.c +++ b/coreutils/echo.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * Original copyright notice is retained at the end of this file. | 22 | * Original copyright notice is retained at the end of this file. |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | 27 | ||
28 | extern int | 28 | extern int |
diff --git a/coreutils/expr.c b/coreutils/expr.c index 9e3c04a11..670352eb6 100644 --- a/coreutils/expr.c +++ b/coreutils/expr.c | |||
@@ -33,7 +33,7 @@ | |||
33 | * One function can handle multiple operators all of equal precedence, | 33 | * One function can handle multiple operators all of equal precedence, |
34 | * provided they all associate ((x op x) op x). */ | 34 | * provided they all associate ((x op x) op x). */ |
35 | 35 | ||
36 | #include "internal.h" | 36 | #include "busybox.h" |
37 | #include <stdio.h> | 37 | #include <stdio.h> |
38 | #include <sys/types.h> | 38 | #include <sys/types.h> |
39 | 39 | ||
diff --git a/coreutils/head.c b/coreutils/head.c index 58b3cae68..c232e1153 100644 --- a/coreutils/head.c +++ b/coreutils/head.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <errno.h> | 26 | #include <errno.h> |
27 | #include <stdio.h> | 27 | #include <stdio.h> |
28 | 28 | ||
@@ -100,4 +100,4 @@ int head_main(int argc, char **argv) | |||
100 | return(0); | 100 | return(0); |
101 | } | 101 | } |
102 | 102 | ||
103 | /* $Id: head.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */ | 103 | /* $Id: head.c,v 1.14 2000/09/25 21:45:57 andersen Exp $ */ |
diff --git a/coreutils/hostid.c b/coreutils/hostid.c index f1010a65d..47bd8d724 100644 --- a/coreutils/hostid.c +++ b/coreutils/hostid.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | 25 | ||
26 | extern int hostid_main(int argc, char **argv) | 26 | extern int hostid_main(int argc, char **argv) |
diff --git a/coreutils/id.c b/coreutils/id.c index a1a17924c..fdfc33cdc 100644 --- a/coreutils/id.c +++ b/coreutils/id.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <unistd.h> | 25 | #include <unistd.h> |
26 | #include <pwd.h> | 26 | #include <pwd.h> |
diff --git a/coreutils/length.c b/coreutils/length.c index cf4fb1c07..14d15c81c 100644 --- a/coreutils/length.c +++ b/coreutils/length.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
2 | #include "internal.h" | 2 | #include "busybox.h" |
3 | #include <stdlib.h> | 3 | #include <stdlib.h> |
4 | #include <string.h> | 4 | #include <string.h> |
5 | #include <stdio.h> | 5 | #include <stdio.h> |
diff --git a/coreutils/ln.c b/coreutils/ln.c index d5f44ea4c..8ef8d05de 100644 --- a/coreutils/ln.c +++ b/coreutils/ln.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #define BB_DECLARE_EXTERN | 25 | #define BB_DECLARE_EXTERN |
26 | #define bb_need_not_a_directory | 26 | #define bb_need_not_a_directory |
27 | #include "messages.c" | 27 | #include "messages.c" |
diff --git a/coreutils/logname.c b/coreutils/logname.c index a0aff42d6..09ee24928 100644 --- a/coreutils/logname.c +++ b/coreutils/logname.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | 25 | ||
26 | extern int logname_main(int argc, char **argv) | 26 | extern int logname_main(int argc, char **argv) |
diff --git a/coreutils/ls.c b/coreutils/ls.c index 0e08f7683..385d6b2de 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -47,7 +47,7 @@ | |||
47 | 47 | ||
48 | /************************************************************************/ | 48 | /************************************************************************/ |
49 | 49 | ||
50 | #include "internal.h" | 50 | #include "busybox.h" |
51 | #include <sys/types.h> | 51 | #include <sys/types.h> |
52 | #include <sys/stat.h> | 52 | #include <sys/stat.h> |
53 | #include <stdio.h> | 53 | #include <stdio.h> |
diff --git a/coreutils/md5sum.c b/coreutils/md5sum.c index a791a41b0..c7e540223 100644 --- a/coreutils/md5sum.c +++ b/coreutils/md5sum.c | |||
@@ -20,7 +20,7 @@ | |||
20 | /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu> */ | 20 | /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu> */ |
21 | /* Hacked to work with BusyBox by Alfred M. Szmidt <ams@trillian.itslinux.org> */ | 21 | /* Hacked to work with BusyBox by Alfred M. Szmidt <ams@trillian.itslinux.org> */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <errno.h> | 25 | #include <errno.h> |
26 | #include <ctype.h> | 26 | #include <ctype.h> |
@@ -66,7 +66,7 @@ extern _IO_ssize_t getline __P ((char **, size_t *, FILE *)); | |||
66 | #include <string.h> | 66 | #include <string.h> |
67 | #include <endian.h> | 67 | #include <endian.h> |
68 | 68 | ||
69 | #include "internal.h" | 69 | #include "busybox.h" |
70 | //---------------------------------------------------------------------------- | 70 | //---------------------------------------------------------------------------- |
71 | //--------md5.h | 71 | //--------md5.h |
72 | //---------------------------------------------------------------------------- | 72 | //---------------------------------------------------------------------------- |
diff --git a/coreutils/mkdir.c b/coreutils/mkdir.c index f824cdcb6..04310e4c7 100644 --- a/coreutils/mkdir.c +++ b/coreutils/mkdir.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #define bb_need_name_too_long | 25 | #define bb_need_name_too_long |
26 | #define BB_DECLARE_EXTERN | 26 | #define BB_DECLARE_EXTERN |
27 | #include "messages.c" | 27 | #include "messages.c" |
diff --git a/coreutils/mkfifo.c b/coreutils/mkfifo.c index 5d4126ac0..5e1bc1a78 100644 --- a/coreutils/mkfifo.c +++ b/coreutils/mkfifo.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <sys/types.h> | 25 | #include <sys/types.h> |
26 | #include <errno.h> | 26 | #include <errno.h> |
diff --git a/coreutils/mknod.c b/coreutils/mknod.c index b815aa198..ecb0e4780 100644 --- a/coreutils/mknod.c +++ b/coreutils/mknod.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
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> |
diff --git a/coreutils/printf.c b/coreutils/printf.c index 94b809348..832ca13d6 100644 --- a/coreutils/printf.c +++ b/coreutils/printf.c | |||
@@ -47,7 +47,7 @@ | |||
47 | 47 | ||
48 | // 19990508 Busy Boxed! Dave Cinege | 48 | // 19990508 Busy Boxed! Dave Cinege |
49 | 49 | ||
50 | #include "internal.h" | 50 | #include "busybox.h" |
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> |
diff --git a/coreutils/pwd.c b/coreutils/pwd.c index f0c923b7b..c9de7778e 100644 --- a/coreutils/pwd.c +++ b/coreutils/pwd.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | #include <dirent.h> | 26 | #include <dirent.h> |
27 | #include <errno.h> | 27 | #include <errno.h> |
diff --git a/coreutils/rm.c b/coreutils/rm.c index c93a94ce1..4f97cad23 100644 --- a/coreutils/rm.c +++ b/coreutils/rm.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | #include <time.h> | 27 | #include <time.h> |
28 | #include <utime.h> | 28 | #include <utime.h> |
diff --git a/coreutils/rmdir.c b/coreutils/rmdir.c index 500890e40..14ebf92c5 100644 --- a/coreutils/rmdir.c +++ b/coreutils/rmdir.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | #include <errno.h> | 27 | #include <errno.h> |
28 | 28 | ||
diff --git a/coreutils/sleep.c b/coreutils/sleep.c index d6705c4c3..709e3de34 100644 --- a/coreutils/sleep.c +++ b/coreutils/sleep.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | 26 | ||
27 | extern int sleep_main(int argc, char **argv) | 27 | extern int sleep_main(int argc, char **argv) |
diff --git a/coreutils/sort.c b/coreutils/sort.c index a74f96ad0..3fe4c7756 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <sys/types.h> | 26 | #include <sys/types.h> |
27 | #include <fcntl.h> | 27 | #include <fcntl.h> |
28 | #include <dirent.h> | 28 | #include <dirent.h> |
@@ -288,4 +288,4 @@ int sort_main(int argc, char **argv) | |||
288 | return(0); | 288 | return(0); |
289 | } | 289 | } |
290 | 290 | ||
291 | /* $Id: sort.c,v 1.21 2000/09/13 02:46:13 kraai Exp $ */ | 291 | /* $Id: sort.c,v 1.22 2000/09/25 21:45:58 andersen Exp $ */ |
diff --git a/coreutils/sync.c b/coreutils/sync.c index 3737cb1f1..8f101cf17 100644 --- a/coreutils/sync.c +++ b/coreutils/sync.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #include <stdio.h> | 25 | #include <stdio.h> |
26 | 26 | ||
27 | extern int sync_main(int argc, char **argv) | 27 | extern int sync_main(int argc, char **argv) |
diff --git a/coreutils/tail.c b/coreutils/tail.c index dcb4f6742..1091d28ed 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c | |||
@@ -38,7 +38,7 @@ | |||
38 | #include <unistd.h> | 38 | #include <unistd.h> |
39 | #include <string.h> | 39 | #include <string.h> |
40 | #include <getopt.h> | 40 | #include <getopt.h> |
41 | #include "internal.h" | 41 | #include "busybox.h" |
42 | 42 | ||
43 | #define STDIN "standard input" | 43 | #define STDIN "standard input" |
44 | #define LINES 0 | 44 | #define LINES 0 |
diff --git a/coreutils/tee.c b/coreutils/tee.c index dc9876020..621801336 100644 --- a/coreutils/tee.c +++ b/coreutils/tee.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #include <getopt.h> | 25 | #include <getopt.h> |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | 27 | ||
diff --git a/coreutils/test.c b/coreutils/test.c index a2bec4492..acd6947d9 100644 --- a/coreutils/test.c +++ b/coreutils/test.c | |||
@@ -31,7 +31,7 @@ | |||
31 | * "This program is in the Public Domain." | 31 | * "This program is in the Public Domain." |
32 | */ | 32 | */ |
33 | 33 | ||
34 | #include "internal.h" | 34 | #include "busybox.h" |
35 | #include <sys/types.h> | 35 | #include <sys/types.h> |
36 | #include <unistd.h> | 36 | #include <unistd.h> |
37 | #include <ctype.h> | 37 | #include <ctype.h> |
diff --git a/coreutils/touch.c b/coreutils/touch.c index 464aedb55..7db6c6e33 100644 --- a/coreutils/touch.c +++ b/coreutils/touch.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | #include <sys/types.h> | 27 | #include <sys/types.h> |
28 | #include <fcntl.h> | 28 | #include <fcntl.h> |
diff --git a/coreutils/tr.c b/coreutils/tr.c index 004092477..54b6abc8c 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c | |||
@@ -24,7 +24,7 @@ | |||
24 | * Original copyright notice is retained at the end of this file. | 24 | * Original copyright notice is retained at the end of this file. |
25 | */ | 25 | */ |
26 | 26 | ||
27 | #include "internal.h" | 27 | #include "busybox.h" |
28 | #include <stdio.h> | 28 | #include <stdio.h> |
29 | #include <string.h> | 29 | #include <string.h> |
30 | #include <stdlib.h> | 30 | #include <stdlib.h> |
diff --git a/coreutils/tty.c b/coreutils/tty.c index bbc051f6b..6eebed9fb 100644 --- a/coreutils/tty.c +++ b/coreutils/tty.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <sys/types.h> | 25 | #include <sys/types.h> |
26 | 26 | ||
diff --git a/coreutils/uname.c b/coreutils/uname.c index 55616dd19..8d9427c86 100644 --- a/coreutils/uname.c +++ b/coreutils/uname.c | |||
@@ -31,7 +31,7 @@ | |||
31 | 31 | ||
32 | /* Busyboxed by Erik Andersen */ | 32 | /* Busyboxed by Erik Andersen */ |
33 | 33 | ||
34 | #include "internal.h" | 34 | #include "busybox.h" |
35 | #include <stdio.h> | 35 | #include <stdio.h> |
36 | #include <sys/types.h> | 36 | #include <sys/types.h> |
37 | #include <sys/utsname.h> | 37 | #include <sys/utsname.h> |
diff --git a/coreutils/uniq.c b/coreutils/uniq.c index 016fc7780..ef38587bd 100644 --- a/coreutils/uniq.c +++ b/coreutils/uniq.c | |||
@@ -22,7 +22,7 @@ | |||
22 | * | 22 | * |
23 | */ | 23 | */ |
24 | 24 | ||
25 | #include "internal.h" | 25 | #include "busybox.h" |
26 | #include <stdio.h> | 26 | #include <stdio.h> |
27 | #include <string.h> | 27 | #include <string.h> |
28 | #include <errno.h> | 28 | #include <errno.h> |
@@ -179,4 +179,4 @@ int uniq_main(int argc, char **argv) | |||
179 | return(0); | 179 | return(0); |
180 | } | 180 | } |
181 | 181 | ||
182 | /* $Id: uniq.c,v 1.13 2000/07/16 20:57:15 kraai Exp $ */ | 182 | /* $Id: uniq.c,v 1.14 2000/09/25 21:45:58 andersen Exp $ */ |
diff --git a/coreutils/usleep.c b/coreutils/usleep.c index fcdf3bbf6..69790ef09 100644 --- a/coreutils/usleep.c +++ b/coreutils/usleep.c | |||
@@ -21,7 +21,7 @@ | |||
21 | * | 21 | * |
22 | */ | 22 | */ |
23 | 23 | ||
24 | #include "internal.h" | 24 | #include "busybox.h" |
25 | #include <stdlib.h> | 25 | #include <stdlib.h> |
26 | #include <unistd.h> | 26 | #include <unistd.h> |
27 | 27 | ||
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index 90bef9238..965ded5b5 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c | |||
@@ -51,7 +51,7 @@ | |||
51 | 51 | ||
52 | /* Reworked to GNU style by Ian Lance Taylor, ian@airs.com, August 93. */ | 52 | /* Reworked to GNU style by Ian Lance Taylor, ian@airs.com, August 93. */ |
53 | 53 | ||
54 | #include "internal.h" | 54 | #include "busybox.h" |
55 | 55 | ||
56 | #include <stdio.h> | 56 | #include <stdio.h> |
57 | #include <errno.h> | 57 | #include <errno.h> |
diff --git a/coreutils/uuencode.c b/coreutils/uuencode.c index 1433c7f3b..5835bd22a 100644 --- a/coreutils/uuencode.c +++ b/coreutils/uuencode.c | |||
@@ -52,7 +52,7 @@ | |||
52 | /* Reworked to GNU style by Ian Lance Taylor, ian@airs.com, August 93. */ | 52 | /* Reworked to GNU style by Ian Lance Taylor, ian@airs.com, August 93. */ |
53 | /* Hacked to work with BusyBox by Alfred M. Szmidt */ | 53 | /* Hacked to work with BusyBox by Alfred M. Szmidt */ |
54 | 54 | ||
55 | #include "internal.h" | 55 | #include "busybox.h" |
56 | 56 | ||
57 | #include <stdio.h> | 57 | #include <stdio.h> |
58 | #include <errno.h> | 58 | #include <errno.h> |
diff --git a/coreutils/wc.c b/coreutils/wc.c index ca5b3680a..b1c9a51cd 100644 --- a/coreutils/wc.c +++ b/coreutils/wc.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <getopt.h> | 25 | #include <getopt.h> |
26 | 26 | ||
diff --git a/coreutils/whoami.c b/coreutils/whoami.c index 84b27fe58..f3c21b3f5 100644 --- a/coreutils/whoami.c +++ b/coreutils/whoami.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | #include <pwd.h> | 25 | #include <pwd.h> |
26 | 26 | ||
diff --git a/coreutils/yes.c b/coreutils/yes.c index 11fa537a0..46873f3f9 100644 --- a/coreutils/yes.c +++ b/coreutils/yes.c | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | */ | 21 | */ |
22 | 22 | ||
23 | #include "internal.h" | 23 | #include "busybox.h" |
24 | #include <stdio.h> | 24 | #include <stdio.h> |
25 | 25 | ||
26 | extern int yes_main(int argc, char **argv) | 26 | extern int yes_main(int argc, char **argv) |