diff options
-rw-r--r-- | include/busybox.h | 4 |
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[]; /* Pull in the utility routines from libbb */ #include "libbb.h" +/* Try to pull in PATH_MAX */ +#include <limits.h> +/* for PATH_MAX on systems that don't have it in limits.h */ +#include <sys/param.h> #ifndef PATH_MAX #define PATH_MAX 256 #endif |