diff options
author | Manuel Novoa III | 2001-06-29 18:59:32 +0000 |
---|---|---|
committer | Manuel Novoa III | 2001-06-29 18:59:32 +0000 |
commit | a2949aa217f255341a0507b6e340285bdea1001f (patch) | |
tree | 9b51d9d86b8165853b4062470b5fc2074e649195 /libbb/dirname.c | |
parent | ff9eee475f61800fe33bd60ac12b8b29015cbcdd (diff) | |
download | busybox-a2949aa217f255341a0507b6e340285bdea1001f.zip 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/dirname.c')
-rw-r--r-- | libbb/dirname.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/dirname.c b/libbb/dirname.c index 2e89fc1..cc50f58 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. */ |