Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/rm.c
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-06-29 22:59:32 +0400
committerManuel Novoa III <mjn3@codepoet.org>2001-06-29 22:59:32 +0400
commita2949aa217f255341a0507b6e340285bdea1001f (patch)
tree9b51d9d86b8165853b4062470b5fc2074e649195 /rm.c
parentff9eee475f61800fe33bd60ac12b8b29015cbcdd (diff)
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 'rm.c')
-rw-r--r--rm.c1
1 files changed, 1 insertions, 0 deletions
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"