diff options
author | Glenn L McGrath | 2002-08-24 20:00:52 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-08-24 20:00:52 +0000 |
commit | 210aa14916aed0fa4c78197c43578bed49a57350 (patch) | |
tree | e5d975d957357d38773eafa44a2b0d74883684c7 | |
parent | abac53b33c6aef4f6746ef33964768d39b34e67c (diff) | |
download | busybox-210aa14916aed0fa4c78197c43578bed49a57350.zip busybox-210aa14916aed0fa4c78197c43578bed49a57350.tar.gz |
Fix warning
-rw-r--r-- | libbb/make_directory.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/make_directory.c b/libbb/make_directory.c index ca5ce7d..668fea7 100644 --- a/libbb/make_directory.c +++ b/libbb/make_directory.c @@ -26,6 +26,7 @@ #include <errno.h> #include <fcntl.h> +#include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> |