summaryrefslogtreecommitdiff
path: root/gunzip.c
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-28 00:18:56 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-28 00:18:56 +0000
commit4f3f757d56fbf420ea5030dcf7ea971b3da3ab47 (patch)
treed986e9bb9f03bf1f83465c274c35c0d58ed544e4 /gunzip.c
parent227a59b05d6df9b4be5990915646249d6f548822 (diff)
downloadbusybox-w32-4f3f757d56fbf420ea5030dcf7ea971b3da3ab47.tar.gz
busybox-w32-4f3f757d56fbf420ea5030dcf7ea971b3da3ab47.tar.bz2
busybox-w32-4f3f757d56fbf420ea5030dcf7ea971b3da3ab47.zip
Latest and greatest. Some effort at libc5 (aiming towards newlib)
compatability. -Erik
Diffstat (limited to 'gunzip.c')
-rw-r--r--gunzip.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gunzip.c b/gunzip.c
index 1a5cdba88..97ab84e2d 100644
--- a/gunzip.c
+++ b/gunzip.c
@@ -102,7 +102,6 @@ static char *license_msg[] = {
102#include <signal.h> 102#include <signal.h>
103#include <sys/stat.h> 103#include <sys/stat.h>
104#include <errno.h> 104#include <errno.h>
105#include <sys/param.h> /* for PATH_MAX */
106 105
107/* #include "tailor.h" */ 106/* #include "tailor.h" */
108 107
@@ -641,8 +640,8 @@ typedef RETSIGTYPE(*sig_type) (int);
641#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */ 640#define RW_USER (S_IRUSR | S_IWUSR) /* creation mode for open() */
642 641
643#ifndef MAX_PATH_LEN /* max pathname length */ 642#ifndef MAX_PATH_LEN /* max pathname length */
644# ifdef PATH_MAX 643# ifdef BUFSIZ
645# define MAX_PATH_LEN PATH_MAX 644# define MAX_PATH_LEN BUFSIZ
646# else 645# else
647# define MAX_PATH_LEN 1024 646# define MAX_PATH_LEN 1024
648# endif 647# endif