From: Eric Andersen Date: Sat, 26 Jan 2002 23:58:22 +0000 (-0000) Subject: If PATH_MAX isn't defined, define it outselves X-Git-Tag: 0_60_3~109 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=20d739adf7fb1542015537dbdb969689118ceb02;p=oweals%2Fbusybox.git If PATH_MAX isn't defined, define it outselves --- 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_ */