diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2003-02-09 12:00:17 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2003-02-09 12:00:17 +0000 |
commit | 826b48b624e3c02b432b8ffbb7809657ddb3a012 (patch) | |
tree | 26f73124d9e530b29af8862a46a99720f0be780c /archival/libunarchive | |
parent | a837e2d9b3fe77f8cbddb7c5c50987822b9dc44b (diff) |
Woops, my gunzip fix broke unzip, these cant be static
Diffstat (limited to 'archival/libunarchive')
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 4 | ||||
-rw-r--r-- | archival/libunarchive/unzip.c | 4 |
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 { } huft_t; static int gunzip_src_fd; -static unsigned int gunzip_bytes_out; /* number of output bytes */ +unsigned int gunzip_bytes_out; /* number of output bytes */ static unsigned int gunzip_outbuf_count; /* bytes in output buffer */ /* gunzip_window size--must be a power of two, and @@ -92,7 +92,7 @@ static const int gunzip_wsize = 0x8000; static unsigned char *gunzip_window; static unsigned int *gunzip_crc_table; -static unsigned int gunzip_crc; +unsigned int gunzip_crc; /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */ #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 { } huft_t; static int gunzip_src_fd; -static unsigned int gunzip_bytes_out; /* number of output bytes */ +unsigned int gunzip_bytes_out; /* number of output bytes */ static unsigned int gunzip_outbuf_count; /* bytes in output buffer */ /* gunzip_window size--must be a power of two, and @@ -92,7 +92,7 @@ static const int gunzip_wsize = 0x8000; static unsigned char *gunzip_window; static unsigned int *gunzip_crc_table; -static unsigned int gunzip_crc; +unsigned int gunzip_crc; /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */ #define BMAX 16 /* maximum bit length of any code (16 for explode) */ |