zlib 1.2.0.6

This commit is contained in:
Mark Adler
2011-09-09 23:22:48 -07:00
parent 4b5a43a219
commit f81ba93d4a
37 changed files with 1235 additions and 551 deletions

View File

@@ -89,6 +89,9 @@ void test_gzio(fname, uncompr, uncomprLen)
Byte *uncompr;
uLong uncomprLen;
{
#ifdef NO_GZCOMPRESS
fprintf(stderr, "NO_GZCOMPRESS -- gz* functions cannot compress\n");
#else
int err;
int len = (int)strlen(hello)+1;
gzFile file;
@@ -159,6 +162,7 @@ void test_gzio(fname, uncompr, uncomprLen)
}
gzclose(file);
#endif
}
/* ===========================================================================