diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-10 17:41:21 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-05-10 17:41:21 +0000 |
commit | f747810f2da205b86f4f79135eb711756bf1a298 (patch) | |
tree | 38a68c4835fe0c708036689e2c418f4fe60cf9a8 | |
parent | 38088efe9838585c590a8ce30942cee0488fdbbf (diff) | |
download | busybox-w32-f747810f2da205b86f4f79135eb711756bf1a298.tar.gz busybox-w32-f747810f2da205b86f4f79135eb711756bf1a298.tar.bz2 busybox-w32-f747810f2da205b86f4f79135eb711756bf1a298.zip |
Shut up the warning "implicit declaration of strlen".
git-svn-id: svn://busybox.net/trunk/busybox@15055 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | util-linux/switch_root.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util-linux/switch_root.c b/util-linux/switch_root.c index 74439291c..9815a6d9e 100644 --- a/util-linux/switch_root.c +++ b/util-linux/switch_root.c | |||
@@ -9,6 +9,7 @@ | |||
9 | #include <dirent.h> | 9 | #include <dirent.h> |
10 | #include <fcntl.h> | 10 | #include <fcntl.h> |
11 | #include <stdio.h> | 11 | #include <stdio.h> |
12 | #include <string.h> | ||
12 | #include <sys/mount.h> | 13 | #include <sys/mount.h> |
13 | #include <sys/stat.h> | 14 | #include <sys/stat.h> |
14 | #include <sys/types.h> | 15 | #include <sys/types.h> |