diff options
Diffstat (limited to 'infblock.c')
-rw-r--r-- | infblock.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -63,7 +63,7 @@ local uInt border[] = { /* Order of the bit length code lengths */ | |||
63 | 63 | ||
64 | void inflate_blocks_reset(s, z, c) | 64 | void inflate_blocks_reset(s, z, c) |
65 | inflate_blocks_statef *s; | 65 | inflate_blocks_statef *s; |
66 | z_stream *z; | 66 | z_streamp z; |
67 | uLongf *c; | 67 | uLongf *c; |
68 | { | 68 | { |
69 | if (s->checkfn != Z_NULL) | 69 | if (s->checkfn != Z_NULL) |
@@ -87,7 +87,7 @@ uLongf *c; | |||
87 | 87 | ||
88 | 88 | ||
89 | inflate_blocks_statef *inflate_blocks_new(z, c, w) | 89 | inflate_blocks_statef *inflate_blocks_new(z, c, w) |
90 | z_stream *z; | 90 | z_streamp z; |
91 | check_func c; | 91 | check_func c; |
92 | uInt w; | 92 | uInt w; |
93 | { | 93 | { |
@@ -115,7 +115,7 @@ uInt w; | |||
115 | #endif | 115 | #endif |
116 | int inflate_blocks(s, z, r) | 116 | int inflate_blocks(s, z, r) |
117 | inflate_blocks_statef *s; | 117 | inflate_blocks_statef *s; |
118 | z_stream *z; | 118 | z_streamp z; |
119 | int r; | 119 | int r; |
120 | { | 120 | { |
121 | uInt t; /* temporary storage */ | 121 | uInt t; /* temporary storage */ |
@@ -381,7 +381,7 @@ int r; | |||
381 | 381 | ||
382 | int inflate_blocks_free(s, z, c) | 382 | int inflate_blocks_free(s, z, c) |
383 | inflate_blocks_statef *s; | 383 | inflate_blocks_statef *s; |
384 | z_stream *z; | 384 | z_streamp z; |
385 | uLongf *c; | 385 | uLongf *c; |
386 | { | 386 | { |
387 | inflate_blocks_reset(s, z, c); | 387 | inflate_blocks_reset(s, z, c); |