diff options
Diffstat (limited to 'gunzip.c')
-rw-r--r-- | gunzip.c | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -1176,21 +1176,6 @@ void clear_bufs(void) | |||
1176 | bytes_in = bytes_out = 0L; | 1176 | bytes_in = bytes_out = 0L; |
1177 | } | 1177 | } |
1178 | 1178 | ||
1179 | /* =========================================================================== | ||
1180 | * Write the output buffer outbuf[0..outcnt-1] and update bytes_out. | ||
1181 | * (used for the compressed data only) | ||
1182 | */ | ||
1183 | void flush_outbuf() | ||
1184 | { | ||
1185 | if (outcnt == 0) | ||
1186 | return; | ||
1187 | |||
1188 | if (!test_mode) | ||
1189 | write_buf(ofd, (char *) outbuf, outcnt); | ||
1190 | bytes_out += (ulg) outcnt; | ||
1191 | outcnt = 0; | ||
1192 | } | ||
1193 | |||
1194 | /* ======================================================================== */ | 1179 | /* ======================================================================== */ |
1195 | int gunzip_main(int argc, char **argv) | 1180 | int gunzip_main(int argc, char **argv) |
1196 | { | 1181 | { |