projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
53a2299
)
If PATH_MAX isn't defined, define it outselves
author
Eric Andersen
<andersen@codepoet.org>
Sat, 26 Jan 2002 23:58:22 +0000
(23:58 -0000)
committer
Eric Andersen
<andersen@codepoet.org>
Sat, 26 Jan 2002 23:58:22 +0000
(23:58 -0000)
include/busybox.h
patch
|
blob
|
history
diff --git
a/include/busybox.h
b/include/busybox.h
index 87cebc3d1ee4365923e556483ede59342aba5163..d4b7964e06a47ed139893f2ea8be5d92fd72b0e5 100644
(file)
--- 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_ */