diff options
Diffstat (limited to 'infutil.c')
-rw-r--r-- | infutil.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -4,7 +4,9 @@ | |||
4 | */ | 4 | */ |
5 | 5 | ||
6 | #include "zutil.h" | 6 | #include "zutil.h" |
7 | #include "infblock.h" | ||
7 | #include "inftrees.h" | 8 | #include "inftrees.h" |
9 | #include "infcodes.h" | ||
8 | #include "infutil.h" | 10 | #include "infutil.h" |
9 | 11 | ||
10 | struct inflate_codes_state {int dummy;}; /* for buggy compilers */ | 12 | struct inflate_codes_state {int dummy;}; /* for buggy compilers */ |
@@ -19,12 +21,12 @@ uInt inflate_mask[] = { | |||
19 | 21 | ||
20 | /* copy as much as possible from the sliding window to the output area */ | 22 | /* copy as much as possible from the sliding window to the output area */ |
21 | int inflate_flush(s, z, r) | 23 | int inflate_flush(s, z, r) |
22 | struct inflate_blocks_state *s; | 24 | inflate_blocks_statef *s; |
23 | z_stream *z; | 25 | z_stream *z; |
24 | int r; | 26 | int r; |
25 | { | 27 | { |
26 | uInt n; | 28 | uInt n; |
27 | Byte *p, *q; | 29 | Bytef *p, *q; |
28 | 30 | ||
29 | /* local copies of source and destination pointers */ | 31 | /* local copies of source and destination pointers */ |
30 | p = z->next_out; | 32 | p = z->next_out; |