aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-03-16 02:12:30 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-03-16 02:12:30 +0000
commitdb175ba7deb10680c924dcfc0492479ab045ed44 (patch)
treee60b90af905c5da6f6717b0bbc9456ffb3ff09d8
parentf490e72f54a97718d4fc63b0bd11dbfcb35a6126 (diff)
downloadbusybox-w32-db175ba7deb10680c924dcfc0492479ab045ed44.tar.gz
busybox-w32-db175ba7deb10680c924dcfc0492479ab045ed44.tar.bz2
busybox-w32-db175ba7deb10680c924dcfc0492479ab045ed44.zip
Try to pull in PATH_MAX properly
git-svn-id: svn://busybox.net/trunk/busybox@4402 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--include/busybox.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/busybox.h b/include/busybox.h
index d4b7964e0..ea58c0c28 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -101,6 +101,10 @@ 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/* Try to pull in PATH_MAX */
105#include <limits.h>
106/* for PATH_MAX on systems that don't have it in limits.h */
107#include <sys/param.h>
104#ifndef PATH_MAX 108#ifndef PATH_MAX
105#define PATH_MAX 256 109#define PATH_MAX 256
106#endif 110#endif