diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 23:17:02 -0700 |
commit | ff11b0a61f7345572ff2e413173d3179486162f2 (patch) | |
tree | f3c9e2563c4f0ac6684a0012ad48423d4c6aa798 /inftrees.h | |
parent | e26a448e9673d67dc2866e11a48d24fc352e5f80 (diff) |
zlib 1.0.4
Diffstat (limited to 'inftrees.h')
-rw-r--r-- | inftrees.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -35,7 +35,7 @@ extern int inflate_trees_bits OF(( uIntf *, /* 19 code lengths */ uIntf *, /* bits tree desired/actual depth */ inflate_huft * FAR *, /* bits tree result */ - z_stream *)); /* for zalloc, zfree functions */ + z_streamp )); /* for zalloc, zfree functions */ extern int inflate_trees_dynamic OF(( uInt, /* number of literal/length codes */ @@ -45,7 +45,7 @@ extern int inflate_trees_dynamic OF(( uIntf *, /* distance desired/actual bit depth */ inflate_huft * FAR *, /* literal/length tree result */ inflate_huft * FAR *, /* distance tree result */ - z_stream *)); /* for zalloc, zfree functions */ + z_streamp )); /* for zalloc, zfree functions */ extern int inflate_trees_fixed OF(( uIntf *, /* literal desired/actual bit depth */ @@ -55,5 +55,5 @@ extern int inflate_trees_fixed OF(( extern int inflate_trees_free OF(( inflate_huft *, /* tables to free */ - z_stream *)); /* for zfree function */ + z_streamp )); /* for zfree function */ |