diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:09:18 -0700 |
commit | 23c69f10698301ae97709eb0bbfb371d66b99a08 (patch) | |
tree | 1956b671b3df8d12c315a38f33b190677ccd659e /infutil.c | |
parent | 6b834a58bdef976383cff6e2a83f353e668a9cf1 (diff) | |
download | zlib-c4e9febefd0e63c0767a26608955ffa9fb6800d4.tar.gz zlib-c4e9febefd0e63c0767a26608955ffa9fb6800d4.tar.bz2 zlib-c4e9febefd0e63c0767a26608955ffa9fb6800d4.zip |
zlib 0.94v0.94
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; |