summaryrefslogtreecommitdiff
path: root/zutil.c
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 22:52:17 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 22:52:17 -0700
commit913afb9174bb474104049906c1382dec81826424 (patch)
tree46bb8ca746088f81382b4f33970b9d43c33d9ba3 /zutil.c
parentbcf78a20978d76f64b7cd46d1a4d7a79a578c77b (diff)
downloadzlib-913afb9174bb474104049906c1382dec81826424.tar.gz
zlib 0.79v0.79
Diffstat (limited to 'zutil.c')
-rw-r--r--zutil.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/zutil.c b/zutil.c
index 1a2e7ef..9fd4ecc 100644
--- a/zutil.c
+++ b/zutil.c
@@ -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__ ? */