diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 22:52:17 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2011-09-09 22:52:17 -0700 |
commit | 913afb9174bb474104049906c1382dec81826424 (patch) | |
tree | 46bb8ca746088f81382b4f33970b9d43c33d9ba3 /zutil.c | |
parent | bcf78a20978d76f64b7cd46d1a4d7a79a578c77b (diff) | |
download | zlib-913afb9174bb474104049906c1382dec81826424.tar.gz zlib-913afb9174bb474104049906c1382dec81826424.tar.bz2 zlib-913afb9174bb474104049906c1382dec81826424.zip |
zlib 0.79v0.79
Diffstat (limited to 'zutil.c')
-rw-r--r-- | zutil.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -3,12 +3,14 @@ | |||
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
6 | /* $Id: zutil.c,v 1.3 1995/04/10 09:52:26 jloup Exp $ */ | 6 | /* $Id: zutil.c,v 1.5 1995/04/14 21:30:23 jloup Exp $ */ |
7 | 7 | ||
8 | #include <stdio.h> | 8 | #include <stdio.h> |
9 | 9 | ||
10 | #include "zutil.h" | 10 | #include "zutil.h" |
11 | 11 | ||
12 | extern void exit __P((int)); | ||
13 | |||
12 | char *zlib_version = ZLIB_VERSION; | 14 | char *zlib_version = ZLIB_VERSION; |
13 | 15 | ||
14 | char *z_errmsg[] = { | 16 | char *z_errmsg[] = { |
@@ -136,7 +138,7 @@ voidp zcalloc (voidp opaque, unsigned items, unsigned size) | |||
136 | 138 | ||
137 | void zcfree (voidp opaque, voidp ptr) | 139 | void zcfree (voidp opaque, voidp ptr) |
138 | { | 140 | { |
139 | return _hfree(ptr); | 141 | _hfree(ptr); |
140 | } | 142 | } |
141 | 143 | ||
142 | # endif /* __TURBOC__ ? */ | 144 | # endif /* __TURBOC__ ? */ |