diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-29 18:59:32 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-06-29 18:59:32 +0000 |
commit | a2949aa217f255341a0507b6e340285bdea1001f (patch) | |
tree | 9b51d9d86b8165853b4062470b5fc2074e649195 /libbb | |
parent | ff9eee475f61800fe33bd60ac12b8b29015cbcdd (diff) | |
download | busybox-a2949aa217f255341a0507b6e340285bdea1001f.tar.gz |
Add some missing includes to kill warnings when building with the default
Config.h and using gcc's -fno-builtin. There are probably other files
with the similar problems.
Also, if building against uClibc, don't include asm/unistd.h in syscalls.c
and module_syscalls.c.
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/concat_path_file.c | 1 | ||||
-rw-r--r-- | libbb/copy_file.c | 1 | ||||
-rw-r--r-- | libbb/dirname.c | 1 | ||||
-rw-r--r-- | libbb/last_char_is.c | 1 | ||||
-rw-r--r-- | libbb/module_syscalls.c | 2 | ||||
-rw-r--r-- | libbb/remove_file.c | 1 | ||||
-rw-r--r-- | libbb/syscalls.c | 2 | ||||
-rw-r--r-- | libbb/unzip.c | 1 |
8 files changed, 10 insertions, 0 deletions
diff --git a/libbb/concat_path_file.c b/libbb/concat_path_file.c index 12a57c837..61efa9c3e 100644 --- a/libbb/concat_path_file.c +++ b/libbb/concat_path_file.c @@ -6,6 +6,7 @@ * */ +#include <string.h> #include "libbb.h" extern char *concat_path_file(const char *path, const char *filename) diff --git a/libbb/copy_file.c b/libbb/copy_file.c index 24bdf9002..c79fbeb14 100644 --- a/libbb/copy_file.c +++ b/libbb/copy_file.c @@ -29,6 +29,7 @@ #include <errno.h> #include <dirent.h> #include <stdlib.h> +#include <string.h> #include "libbb.h" diff --git a/libbb/dirname.c b/libbb/dirname.c index 2e89fc17a..cc50f5870 100644 --- a/libbb/dirname.c +++ b/libbb/dirname.c @@ -19,6 +19,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <string.h> #include "libbb.h" /* Return a string on the heap containing the directory component of PATH. */ diff --git a/libbb/last_char_is.c b/libbb/last_char_is.c index ae2d24bf7..a95e57c35 100644 --- a/libbb/last_char_is.c +++ b/libbb/last_char_is.c @@ -19,6 +19,7 @@ * */ +#include <string.h> #include "libbb.h" /* Find out if the last character of a string matches the one given Don't diff --git a/libbb/module_syscalls.c b/libbb/module_syscalls.c index 2fb4cd177..36b75fb93 100644 --- a/libbb/module_syscalls.c +++ b/libbb/module_syscalls.c @@ -28,7 +28,9 @@ _syscall* defined. */ #define __LIBRARY__ #include <sys/syscall.h> +#ifndef __UCLIBC__ #include <asm/unistd.h> +#endif #include "libbb.h" diff --git a/libbb/remove_file.c b/libbb/remove_file.c index 23be40429..3b84680c4 100644 --- a/libbb/remove_file.c +++ b/libbb/remove_file.c @@ -29,6 +29,7 @@ #include <errno.h> #include <unistd.h> #include <stdlib.h> +#include <string.h> #include <getopt.h> #include "libbb.h" diff --git a/libbb/syscalls.c b/libbb/syscalls.c index f183b26c3..426a14aa1 100644 --- a/libbb/syscalls.c +++ b/libbb/syscalls.c @@ -30,7 +30,9 @@ #include <sys/syscall.h> +#ifndef __UCLIBC__ #include <asm/unistd.h> +#endif #include "libbb.h" #if defined(__ia64__) diff --git a/libbb/unzip.c b/libbb/unzip.c index 40b8af427..b85eb9981 100644 --- a/libbb/unzip.c +++ b/libbb/unzip.c @@ -64,6 +64,7 @@ static char *license_msg[] = { #include <sys/wait.h> #include <signal.h> #include <stdlib.h> +#include <string.h> #include "libbb.h" FILE *in_file, *out_file; |