commit | 20d739adf7fb1542015537dbdb969689118ceb02 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Sat Jan 26 23:58:22 2002 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Sat Jan 26 23:58:22 2002 +0000 |
tree | d5f2b1851ee214be5642707bcea0b5985389fe96 | |
parent | 53a2299230976b93d3bbe81ad92dad8c23d0b271 [diff] [blame] |
If PATH_MAX isn't defined, define it outselves
diff --git a/include/busybox.h b/include/busybox.h index 87cebc3..d4b7964 100644 --- a/include/busybox.h +++ b/include/busybox.h
@@ -101,6 +101,8 @@ /* Pull in the utility routines from libbb */ #include "libbb.h" - +#ifndef PATH_MAX +#define PATH_MAX 256 +#endif #endif /* _BB_INTERNAL_H_ */