Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-27 02:58:22 +0300
committerEric Andersen <andersen@codepoet.org>2002-01-27 02:58:22 +0300
commit20d739adf7fb1542015537dbdb969689118ceb02 (patch)
treed5f2b1851ee214be5642707bcea0b5985389fe96 /include/busybox.h
parent53a2299230976b93d3bbe81ad92dad8c23d0b271 (diff)
If PATH_MAX isn't defined, define it outselves
Diffstat (limited to 'include/busybox.h')
-rw-r--r--include/busybox.h4
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[];
/* Pull in the utility routines from libbb */
#include "libbb.h"
-
+#ifndef PATH_MAX
+#define PATH_MAX 256
+#endif
#endif /* _BB_INTERNAL_H_ */