diff options
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(( | |||
35 | uIntf *, /* 19 code lengths */ | 35 | uIntf *, /* 19 code lengths */ |
36 | uIntf *, /* bits tree desired/actual depth */ | 36 | uIntf *, /* bits tree desired/actual depth */ |
37 | inflate_huft * FAR *, /* bits tree result */ | 37 | inflate_huft * FAR *, /* bits tree result */ |
38 | z_stream *)); /* for zalloc, zfree functions */ | 38 | z_streamp )); /* for zalloc, zfree functions */ |
39 | 39 | ||
40 | extern int inflate_trees_dynamic OF(( | 40 | extern int inflate_trees_dynamic OF(( |
41 | uInt, /* number of literal/length codes */ | 41 | uInt, /* number of literal/length codes */ |
@@ -45,7 +45,7 @@ extern int inflate_trees_dynamic OF(( | |||
45 | uIntf *, /* distance desired/actual bit depth */ | 45 | uIntf *, /* distance desired/actual bit depth */ |
46 | inflate_huft * FAR *, /* literal/length tree result */ | 46 | inflate_huft * FAR *, /* literal/length tree result */ |
47 | inflate_huft * FAR *, /* distance tree result */ | 47 | inflate_huft * FAR *, /* distance tree result */ |
48 | z_stream *)); /* for zalloc, zfree functions */ | 48 | z_streamp )); /* for zalloc, zfree functions */ |
49 | 49 | ||
50 | extern int inflate_trees_fixed OF(( | 50 | extern int inflate_trees_fixed OF(( |
51 | uIntf *, /* literal desired/actual bit depth */ | 51 | uIntf *, /* literal desired/actual bit depth */ |
@@ -55,5 +55,5 @@ extern int inflate_trees_fixed OF(( | |||
55 | 55 | ||
56 | extern int inflate_trees_free OF(( | 56 | extern int inflate_trees_free OF(( |
57 | inflate_huft *, /* tables to free */ | 57 | inflate_huft *, /* tables to free */ |
58 | z_stream *)); /* for zfree function */ | 58 | z_streamp )); /* for zfree function */ |
59 | 59 | ||