diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-14 00:06:51 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-14 00:06:51 +0000 |
commit | 07766bb0e7adcefa5dd5a373986176a5cd42ed23 (patch) | |
tree | d43553bc2fa6980fb99a098c9c363e6837844633 /archival/libunarchive | |
parent | da799e82274ffa48c5a27c5d034f4f31ba06e29f (diff) | |
download | busybox-07766bb0e7adcefa5dd5a373986176a5cd42ed23.tar.gz |
gzip: reduce global data footprint, part 3
Diffstat (limited to 'archival/libunarchive')
-rw-r--r-- | archival/libunarchive/decompress_unzip.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/archival/libunarchive/decompress_unzip.c b/archival/libunarchive/decompress_unzip.c index fb87fe88d..331fe34d8 100644 --- a/archival/libunarchive/decompress_unzip.c +++ b/archival/libunarchive/decompress_unzip.c @@ -455,6 +455,8 @@ static int huft_build(unsigned *b, const unsigned n, * bl, bd: number of bits decoded by tl[] and td[] */ /* called once from inflate_block */ + +/* map formerly local static variables to globals */ #define ml inflate_codes_ml #define md inflate_codes_md #define bb inflate_codes_bb |