diff options
author | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-06-29 18:59:32 +0000 |
---|---|---|
committer | mjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-06-29 18:59:32 +0000 |
commit | e654b8d09d455e3715c417ede19b762d4ac72cb8 (patch) | |
tree | 9b51d9d86b8165853b4062470b5fc2074e649195 /rm.c | |
parent | 5c26df0a44c1227f758e2b284f1b676cc2165364 (diff) | |
download | busybox-w32-e654b8d09d455e3715c417ede19b762d4ac72cb8.tar.gz busybox-w32-e654b8d09d455e3715c417ede19b762d4ac72cb8.tar.bz2 busybox-w32-e654b8d09d455e3715c417ede19b762d4ac72cb8.zip |
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.
git-svn-id: svn://busybox.net/trunk/busybox@2950 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'rm.c')
-rw-r--r-- | rm.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -29,6 +29,7 @@ | |||
29 | #include <errno.h> | 29 | #include <errno.h> |
30 | #include <unistd.h> | 30 | #include <unistd.h> |
31 | #include <stdlib.h> | 31 | #include <stdlib.h> |
32 | #include <string.h> | ||
32 | #include <getopt.h> | 33 | #include <getopt.h> |
33 | #include "busybox.h" | 34 | #include "busybox.h" |
34 | 35 | ||