diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-06-22 03:07:19 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-06-22 03:07:19 +0000 |
commit | edb70305cd33869f93f24d55d16172eea560e72d (patch) | |
tree | c53e9db1997931f2c08f9c8a7cc00e5bd9964953 /libbb | |
parent | a6aa66af589d62391abad0e95ccc747f69f1ad1f (diff) | |
download | busybox-w32-edb70305cd33869f93f24d55d16172eea560e72d.tar.gz busybox-w32-edb70305cd33869f93f24d55d16172eea560e72d.tar.bz2 busybox-w32-edb70305cd33869f93f24d55d16172eea560e72d.zip |
stdlib.h defined free(), which this needs
git-svn-id: svn://busybox.net/trunk/busybox@2883 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-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 e2e28a8cd..54d9b4c51 100644 --- a/libbb/make_directory.c +++ b/libbb/make_directory.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #include <sys/stat.h> | 25 | #include <sys/stat.h> |
26 | #include <sys/types.h> | 26 | #include <sys/types.h> |
27 | #include <unistd.h> | 27 | #include <unistd.h> |
28 | #include <stdlib.h> | ||
28 | 29 | ||
29 | #include "libbb.h" | 30 | #include "libbb.h" |
30 | 31 | ||