diff options
author | Eric Andersen | 2005-04-16 19:39:00 +0000 |
---|---|---|
committer | Eric Andersen | 2005-04-16 19:39:00 +0000 |
commit | 14f5c8d764ab7429367feb407ab86191054e6a8a (patch) | |
tree | 2aa792b8a9d8f7af365c456f19f34a963236c26d /archival/libunarchive | |
parent | a77b4f39708306d44058d7ca1683f448f51c5fce (diff) | |
download | busybox-14f5c8d764ab7429367feb407ab86191054e6a8a.zip busybox-14f5c8d764ab7429367feb407ab86191054e6a8a.tar.gz |
Patch from Bernhard Fischer to make a bunch of symbols static
which were otherwise cluttering the global namespace.
Diffstat (limited to 'archival/libunarchive')
-rw-r--r-- | archival/libunarchive/check_header_gzip.c | 1 | ||||
-rw-r--r-- | archival/libunarchive/decompress_uncompress.c | 14 |
2 files changed, 8 insertions, 7 deletions
diff --git a/archival/libunarchive/check_header_gzip.c b/archival/libunarchive/check_header_gzip.c index 13832c2..9e065c4 100644 --- a/archival/libunarchive/check_header_gzip.c +++ b/archival/libunarchive/check_header_gzip.c @@ -1,6 +1,7 @@ #include <stdlib.h> #include <unistd.h> #include "libbb.h" +#include "unarchive.h" /* for external decl of check_header_gzip */ extern void check_header_gzip(int src_fd) { diff --git a/archival/libunarchive/decompress_uncompress.c b/archival/libunarchive/decompress_uncompress.c index e39872c..a3fcf64 100644 --- a/archival/libunarchive/decompress_uncompress.c +++ b/archival/libunarchive/decompress_uncompress.c @@ -65,23 +65,23 @@ #define MAXCODE(n) (1L << (n)) /* Block compress mode -C compatible with 2.0 */ -int block_mode = BLOCK_MODE; +static int block_mode = BLOCK_MODE; /* user settable max # bits/code */ -int maxbits = BITS; +static int maxbits = BITS; /* Exitcode of compress (-1 no file compressed) */ -int exit_code = -1; +static int exit_code = -1; /* Input buffer */ -unsigned char inbuf[IBUFSIZ + 64]; +static unsigned char inbuf[IBUFSIZ + 64]; /* Output buffer */ -unsigned char outbuf[OBUFSIZ + 2048]; +static unsigned char outbuf[OBUFSIZ + 2048]; -long int htab[HSIZE]; -unsigned short codetab[HSIZE]; +static long int htab[HSIZE]; +static unsigned short codetab[HSIZE]; #define htabof(i) htab[i] #define codetabof(i) codetab[i] |