diff options
Diffstat (limited to 'bin/gzip/inflate.c')
| -rw-r--r-- | bin/gzip/inflate.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/bin/gzip/inflate.c b/bin/gzip/inflate.c index bf9774f0..af2e1e92 100644 --- a/bin/gzip/inflate.c +++ b/bin/gzip/inflate.c @@ -95,15 +95,18 @@ the two sets of lengths. */ +#include "stddef.h" // for NULL + +#include <stdio.h> // for fprintf, stderr +#include <string.h> // for memcpy #ifdef RCSID static char rcsid[] = "$Id: inflate.c,v 1.1 2002/08/18 00:59:21 hpa Exp $"; #endif -#include <sys/types.h> -#include <stdlib.h> +#include "gzip.h" // for uch, ulg, get_byte, ush, outcnt, OF, flush_window + +#include <stdlib.h> // for free, malloc -#include "tailor.h" -#include "gzip.h" #define slide window /* Huffman code lookup table entry--this entry is four bytes for machines |
