zlib 1.0.4

This commit is contained in:
Mark Adler
2011-09-09 23:17:02 -07:00
parent e26a448e96
commit ff11b0a61f
31 changed files with 301 additions and 191 deletions

View File

@@ -60,7 +60,7 @@ inflate_codes_statef *inflate_codes_new(bl, bd, tl, td, z)
uInt bl, bd;
inflate_huft *tl;
inflate_huft *td; /* need separate declaration for Borland C++ */
z_stream *z;
z_streamp z;
{
inflate_codes_statef *c;
@@ -80,7 +80,7 @@ z_stream *z;
int inflate_codes(s, z, r)
inflate_blocks_statef *s;
z_stream *z;
z_streamp z;
int r;
{
uInt j; /* temporary storage */
@@ -240,7 +240,7 @@ int r;
void inflate_codes_free(c, z)
inflate_codes_statef *c;
z_stream *z;
z_streamp z;
{
ZFREE(z, c);
Tracev((stderr, "inflate: codes free\n"));