zlib 0.79

This commit is contained in:
Mark Adler
2011-09-09 22:52:17 -07:00
parent bcf78a2097
commit 913afb9174
23 changed files with 559 additions and 140 deletions

View File

@@ -3,12 +3,14 @@
* For conditions of distribution and use, see copyright notice in zlib.h
*/
/* $Id: zutil.c,v 1.3 1995/04/10 09:52:26 jloup Exp $ */
/* $Id: zutil.c,v 1.5 1995/04/14 21:30:23 jloup Exp $ */
#include <stdio.h>
#include "zutil.h"
extern void exit __P((int));
char *zlib_version = ZLIB_VERSION;
char *z_errmsg[] = {
@@ -136,7 +138,7 @@ voidp zcalloc (voidp opaque, unsigned items, unsigned size)
void zcfree (voidp opaque, voidp ptr)
{
return _hfree(ptr);
_hfree(ptr);
}
# endif /* __TURBOC__ ? */