aboutsummaryrefslogtreecommitdiff
path: root/libbb/concat_path_file.c
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 /libbb/concat_path_file.c
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.
Diffstat (limited to 'libbb/concat_path_file.c')
-rw-r--r--libbb/concat_path_file.c1
1 files changed, 1 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)