From db175ba7deb10680c924dcfc0492479ab045ed44 Mon Sep 17 00:00:00 2001 From: andersen Date: Sat, 16 Mar 2002 02:12:30 +0000 Subject: Try to pull in PATH_MAX properly git-svn-id: svn://busybox.net/trunk/busybox@4402 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- include/busybox.h | 4 ++++ 1 file changed, 4 insertions(+) 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[]; /* Pull in the utility routines from libbb */ #include "libbb.h" +/* Try to pull in PATH_MAX */ +#include +/* for PATH_MAX on systems that don't have it in limits.h */ +#include #ifndef PATH_MAX #define PATH_MAX 256 #endif -- cgit v1.2.3-55-g6feb