diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-08-22 05:35:39 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-08-22 05:35:39 +0000 |
commit | c0f9d0dce7a4d1ef1b2fd19f98fc0ec94c3887e4 (patch) | |
tree | 90f42d523e30fbb450fd9ad95ec9b9bc7f86456d | |
parent | 5d60a462694ae4ab24fdbc903859949886c90805 (diff) | |
download | busybox-w32-c0f9d0dce7a4d1ef1b2fd19f98fc0ec94c3887e4.tar.gz busybox-w32-c0f9d0dce7a4d1ef1b2fd19f98fc0ec94c3887e4.tar.bz2 busybox-w32-c0f9d0dce7a4d1ef1b2fd19f98fc0ec94c3887e4.zip |
Add #include <sys/param.h> to ensure PATH_MAX is defined
-rw-r--r-- | libbb/xgetcwd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libbb/xgetcwd.c b/libbb/xgetcwd.c index 274668166..4f7748123 100644 --- a/libbb/xgetcwd.c +++ b/libbb/xgetcwd.c | |||
@@ -10,6 +10,7 @@ | |||
10 | #include <errno.h> | 10 | #include <errno.h> |
11 | #include <unistd.h> | 11 | #include <unistd.h> |
12 | #include <limits.h> | 12 | #include <limits.h> |
13 | #include <sys/param.h> | ||
13 | #include "libbb.h" | 14 | #include "libbb.h" |
14 | 15 | ||
15 | /* Amount to increase buffer size by in each try. */ | 16 | /* Amount to increase buffer size by in each try. */ |