aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-06-29 18:59:32 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-06-29 18:59:32 +0000
commita2949aa217f255341a0507b6e340285bdea1001f (patch)
tree9b51d9d86b8165853b4062470b5fc2074e649195
parentff9eee475f61800fe33bd60ac12b8b29015cbcdd (diff)
downloadbusybox-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.
-rw-r--r--archival/libunarchive/decompress_unzip.c1
-rw-r--r--archival/libunarchive/unzip.c1
-rw-r--r--coreutils/rm.c1
-rw-r--r--libbb/concat_path_file.c1
-rw-r--r--libbb/copy_file.c1
-rw-r--r--libbb/dirname.c1
-rw-r--r--libbb/last_char_is.c1
-rw-r--r--libbb/module_syscalls.c2
-rw-r--r--libbb/remove_file.c1
-rw-r--r--libbb/syscalls.c2
-rw-r--r--libbb/unzip.c1
-rw-r--r--rm.c1
12 files changed, 14 insertions, 0 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c
index 40b8af427..b85eb9981 100644
--- a/archival/libunarchive/decompress_unzip.c
+++ b/archival/libunarchive/decompress_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;
diff --git a/archival/libunarchive/unzip.c b/archival/libunarchive/unzip.c
index 40b8af427..b85eb9981 100644
--- a/archival/libunarchive/unzip.c
+++ b/archival/libunarchive/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;
diff --git a/coreutils/rm.c b/coreutils/rm.c
index f8e16625c..51c9f4ceb 100644
--- a/coreutils/rm.c
+++ b/coreutils/rm.c
@@ -29,6 +29,7 @@
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
+#include <string.h>
#include <getopt.h>
#include "busybox.h"
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;
diff --git a/rm.c b/rm.c
index f8e16625c..51c9f4ceb 100644
--- a/rm.c
+++ b/rm.c
@@ -29,6 +29,7 @@
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
+#include <string.h>
#include <getopt.h>
#include "busybox.h"