diff options
author | Erik Andersen | 2000-04-28 00:18:56 +0000 |
---|---|---|
committer | Erik Andersen | 2000-04-28 00:18:56 +0000 |
commit | 4f3f757d56fbf420ea5030dcf7ea971b3da3ab47 (patch) | |
tree | d986e9bb9f03bf1f83465c274c35c0d58ed544e4 /gunzip.c | |
parent | 227a59b05d6df9b4be5990915646249d6f548822 (diff) | |
download | busybox-4f3f757d56fbf420ea5030dcf7ea971b3da3ab47.zip busybox-4f3f757d56fbf420ea5030dcf7ea971b3da3ab47.tar.gz |
Latest and greatest. Some effort at libc5 (aiming towards newlib)
compatability.
-Erik
Diffstat (limited to 'gunzip.c')
-rw-r--r-- | gunzip.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -102,7 +102,6 @@ static char *license_msg[] = { #include <signal.h> #include <sys/stat.h> #include <errno.h> -#include <sys/param.h> /* for PATH_MAX */ /* #include "tailor.h" */ @@ -641,8 +640,8 @@ typedef RETSIGTYPE(*sig_type) (int); #define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */ #ifndef MAX_PATH_LEN /* max pathname length */ -# ifdef PATH_MAX -# define MAX_PATH_LEN PATH_MAX +# ifdef BUFSIZ +# define MAX_PATH_LEN BUFSIZ # else # define MAX_PATH_LEN 1024 # endif |