aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-02-09 12:00:17 +0000
committerbug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-02-09 12:00:17 +0000
commit23227868efd050b23154bbf75a42121caf4d1a12 (patch)
tree26f73124d9e530b29af8862a46a99720f0be780c
parent377cf8da13abec99ad81de20e9199baca47349cb (diff)
downloadbusybox-w32-23227868efd050b23154bbf75a42121caf4d1a12.tar.gz
busybox-w32-23227868efd050b23154bbf75a42121caf4d1a12.tar.bz2
busybox-w32-23227868efd050b23154bbf75a42121caf4d1a12.zip
Woops, my gunzip fix broke unzip, these cant be static
git-svn-id: svn://busybox.net/trunk/busybox@6548 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--archival/libunarchive/decompress_unzip.c4
-rw-r--r--archival/libunarchive/unzip.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c
index 8da9b5cb9..3a7334ce9 100644
--- a/archival/libunarchive/decompress_unzip.c
+++ b/archival/libunarchive/decompress_unzip.c
@@ -83,7 +83,7 @@ typedef struct huft_s {
83} huft_t; 83} huft_t;
84 84
85static int gunzip_src_fd; 85static int gunzip_src_fd;
86static unsigned int gunzip_bytes_out; /* number of output bytes */ 86unsigned int gunzip_bytes_out; /* number of output bytes */
87static unsigned int gunzip_outbuf_count; /* bytes in output buffer */ 87static unsigned int gunzip_outbuf_count; /* bytes in output buffer */
88 88
89/* gunzip_window size--must be a power of two, and 89/* gunzip_window size--must be a power of two, and
@@ -92,7 +92,7 @@ static const int gunzip_wsize = 0x8000;
92static unsigned char *gunzip_window; 92static unsigned char *gunzip_window;
93 93
94static unsigned int *gunzip_crc_table; 94static unsigned int *gunzip_crc_table;
95static unsigned int gunzip_crc; 95unsigned int gunzip_crc;
96 96
97/* If BMAX needs to be larger than 16, then h and x[] should be ulg. */ 97/* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
98#define BMAX 16 /* maximum bit length of any code (16 for explode) */ 98#define BMAX 16 /* maximum bit length of any code (16 for explode) */
diff --git a/archival/libunarchive/unzip.c b/archival/libunarchive/unzip.c
index 8da9b5cb9..3a7334ce9 100644
--- a/archival/libunarchive/unzip.c
+++ b/archival/libunarchive/unzip.c
@@ -83,7 +83,7 @@ typedef struct huft_s {
83} huft_t; 83} huft_t;
84 84
85static int gunzip_src_fd; 85static int gunzip_src_fd;
86static unsigned int gunzip_bytes_out; /* number of output bytes */ 86unsigned int gunzip_bytes_out; /* number of output bytes */
87static unsigned int gunzip_outbuf_count; /* bytes in output buffer */ 87static unsigned int gunzip_outbuf_count; /* bytes in output buffer */
88 88
89/* gunzip_window size--must be a power of two, and 89/* gunzip_window size--must be a power of two, and
@@ -92,7 +92,7 @@ static const int gunzip_wsize = 0x8000;
92static unsigned char *gunzip_window; 92static unsigned char *gunzip_window;
93 93
94static unsigned int *gunzip_crc_table; 94static unsigned int *gunzip_crc_table;
95static unsigned int gunzip_crc; 95unsigned int gunzip_crc;
96 96
97/* If BMAX needs to be larger than 16, then h and x[] should be ulg. */ 97/* If BMAX needs to be larger than 16, then h and x[] should be ulg. */
98#define BMAX 16 /* maximum bit length of any code (16 for explode) */ 98#define BMAX 16 /* maximum bit length of any code (16 for explode) */