diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-01-26 23:58:22 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-01-26 23:58:22 +0000 |
commit | 54ce1e49d3b787a2cf9501a09d72c50210da3f56 (patch) | |
tree | d5f2b1851ee214be5642707bcea0b5985389fe96 | |
parent | 8832d72e12ae950c04bc0f429ec8829c47c55582 (diff) | |
download | busybox-w32-54ce1e49d3b787a2cf9501a09d72c50210da3f56.tar.gz busybox-w32-54ce1e49d3b787a2cf9501a09d72c50210da3f56.tar.bz2 busybox-w32-54ce1e49d3b787a2cf9501a09d72c50210da3f56.zip |
If PATH_MAX isn't defined, define it outselves
git-svn-id: svn://busybox.net/trunk/busybox@4113 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r-- | include/busybox.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/busybox.h b/include/busybox.h index 87cebc3d1..d4b7964e0 100644 --- a/include/busybox.h +++ b/include/busybox.h | |||
@@ -101,6 +101,8 @@ extern const struct BB_applet applets[]; | |||
101 | /* Pull in the utility routines from libbb */ | 101 | /* Pull in the utility routines from libbb */ |
102 | #include "libbb.h" | 102 | #include "libbb.h" |
103 | 103 | ||
104 | 104 | #ifndef PATH_MAX | |
105 | #define PATH_MAX 256 | ||
106 | #endif | ||
105 | 107 | ||
106 | #endif /* _BB_INTERNAL_H_ */ | 108 | #endif /* _BB_INTERNAL_H_ */ |