diff options
author | Rob Landley | 2006-03-06 20:47:33 +0000 |
---|---|---|
committer | Rob Landley | 2006-03-06 20:47:33 +0000 |
commit | dfba741457cc81eb2ed3a9d4c074fbad74aa3249 (patch) | |
tree | 588d140a71e857cb32c80d1faad6f3073b119aa7 /archival/libunarchive/decompress_unzip.c | |
parent | 1f5e25bf3eca768b8cee1c689ac154d8f51662f9 (diff) | |
download | busybox-dfba741457cc81eb2ed3a9d4c074fbad74aa3249.zip busybox-dfba741457cc81eb2ed3a9d4c074fbad74aa3249.tar.gz |
Robert P. Day removed 8 gazillion occurrences of "extern" on function
definitions. (That should only be on prototypes.)
Diffstat (limited to 'archival/libunarchive/decompress_unzip.c')
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index ea81695..7776dee 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c @@ -892,7 +892,7 @@ static int inflate_get_next_window(void) } /* Initialise bytebuffer, be careful not to overfill the buffer */ -extern void inflate_init(unsigned int bufsize) +void inflate_init(unsigned int bufsize) { /* Set the bytebuffer size, default is same as gunzip_wsize */ bytebuffer_max = bufsize + 8; @@ -900,12 +900,12 @@ extern void inflate_init(unsigned int bufsize) bytebuffer_size = 0; } -extern void inflate_cleanup(void) +void inflate_cleanup(void) { free(bytebuffer); } -extern int inflate_unzip(int in, int out) +int inflate_unzip(int in, int out) { ssize_t nwrote; typedef void (*sig_type) (int); @@ -952,7 +952,7 @@ extern int inflate_unzip(int in, int out) return 0; } -extern int inflate_gunzip(int in, int out) +int inflate_gunzip(int in, int out) { unsigned int stored_crc = 0; unsigned int count; |