diff options
Diffstat (limited to 'libc')
-rw-r--r-- | libc/misc/wordexp/wordexp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/wordexp/wordexp.c b/libc/misc/wordexp/wordexp.c index 2f529158c..4c25d2860 100644 --- a/libc/misc/wordexp/wordexp.c +++ b/libc/misc/wordexp/wordexp.c @@ -98,8 +98,9 @@ static __inline__ char *w_addchar(char *buffer, size_t * actlen, return buffer; } - +#ifndef MAX #define MAX( a, b ) ( ( ( a ) > ( b ) ) ? ( a ) : ( b ) ) +#endif static char *w_addmem(char *buffer, size_t * actlen, size_t * maxlen, const char *str, size_t len) { |