If PATH_MAX isn't defined, define it outselves
authorEric Andersen <andersen@codepoet.org>
Sat, 26 Jan 2002 23:58:22 +0000 (23:58 -0000)
committerEric Andersen <andersen@codepoet.org>
Sat, 26 Jan 2002 23:58:22 +0000 (23:58 -0000)
include/busybox.h

index 87cebc3d1ee4365923e556483ede59342aba5163..d4b7964e06a47ed139893f2ea8be5d92fd72b0e5 100644 (file)
@@ -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_ */