From 54ce1e49d3b787a2cf9501a09d72c50210da3f56 Mon Sep 17 00:00:00 2001 From: andersen Date: Sat, 26 Jan 2002 23:58:22 +0000 Subject: If PATH_MAX isn't defined, define it outselves git-svn-id: svn://busybox.net/trunk/busybox@4113 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- include/busybox.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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_ */ -- cgit v1.2.3-55-g6feb