diff options
author | Rob Landley <rob@landley.net> | 2006-05-10 17:41:21 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-05-10 17:41:21 +0000 |
commit | 094b9f7e1d3638006273adfeba5ceeb65cb7aeac (patch) | |
tree | 38a68c4835fe0c708036689e2c418f4fe60cf9a8 | |
parent | 06b00e8ba78376e8e2c17b3b8507ade85421fe4b (diff) | |
download | busybox-094b9f7e1d3638006273adfeba5ceeb65cb7aeac.tar.gz |
Shut up the warning "implicit declaration of strlen".
-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 @@ #include <dirent.h> #include <fcntl.h> #include <stdio.h> +#include <string.h> #include <sys/mount.h> #include <sys/stat.h> #include <sys/types.h> |