summaryrefslogtreecommitdiff
path: root/infutil.c
diff options
context:
space:
mode:
Diffstat (limited to 'infutil.c')
-rw-r--r--infutil.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/infutil.c b/infutil.c
index a5902e7..96db3a4 100644
--- a/infutil.c
+++ b/infutil.c
@@ -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
10struct inflate_codes_state {int dummy;}; /* for buggy compilers */ 12struct 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 */
21int inflate_flush(s, z, r) 23int inflate_flush(s, z, r)
22struct inflate_blocks_state *s; 24inflate_blocks_statef *s;
23z_stream *z; 25z_stream *z;
24int r; 26int 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;