diff options
author | Glenn L McGrath | 2001-03-28 07:37:48 +0000 |
---|---|---|
committer | Glenn L McGrath | 2001-03-28 07:37:48 +0000 |
commit | 02cebebc3b3505ce9047f39386dd65d0f10efb51 (patch) | |
tree | fcf685e576c6cf437d131c2656630f127423b500 /gunzip.c | |
parent | 9233959940992f5b81fcf1ed63c4606d845bce8b (diff) | |
download | busybox-02cebebc3b3505ce9047f39386dd65d0f10efb51.zip busybox-02cebebc3b3505ce9047f39386dd65d0f10efb51.tar.gz |
Remove cruft
Diffstat (limited to 'gunzip.c')
-rw-r--r-- | gunzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -125,13 +125,14 @@ unsigned short mask_bits[] = { //static int error_number = 0; /* ======================================================================== * Signal and error handler. - */ + static void abort_gzip() { error_msg("gzip aborted\n"); // exit(ERROR); return; } +*/ static void make_crc_table() { @@ -432,7 +433,6 @@ static int inflate_codes(huft_t *tl, huft_t *td, int bl, int bd) if (e == 16) { /* then it's a literal */ window[w++] = (unsigned char) t->v.n; if (w == WSIZE) { -// flush_output(w); outcnt=(w), flush_window(); w = 0; |