summaryrefslogtreecommitdiff
path: root/gzio.c
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:10:21 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:10:21 -0700
commit25e5325501edade156e897f95afdaa2be78ad9a3 (patch)
tree82687eec194357f9f94f6f137697ffd7a600c1cf /gzio.c
parent23c69f10698301ae97709eb0bbfb371d66b99a08 (diff)
downloadzlib-0.95.tar.gz
zlib-0.95.tar.bz2
zlib-0.95.zip
zlib 0.95v0.95
Diffstat (limited to 'gzio.c')
-rw-r--r--gzio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gzio.c b/gzio.c
index 1f0f9fc..cd932d3 100644
--- a/gzio.c
+++ b/gzio.c
@@ -234,7 +234,7 @@ gzFile gzdopen (fd, mode)
234*/ 234*/
235int gzread (file, buf, len) 235int gzread (file, buf, len)
236 gzFile file; 236 gzFile file;
237 voidnp buf; 237 voidp buf;
238 unsigned len; 238 unsigned len;
239{ 239{
240 gz_stream *s = (gz_stream*)file; 240 gz_stream *s = (gz_stream*)file;
@@ -292,7 +292,7 @@ int gzread (file, buf, len)
292*/ 292*/
293int gzwrite (file, buf, len) 293int gzwrite (file, buf, len)
294 gzFile file; 294 gzFile file;
295 voidnp buf; 295 voidp buf;
296 unsigned len; 296 unsigned len;
297{ 297{
298 gz_stream *s = (gz_stream*)file; 298 gz_stream *s = (gz_stream*)file;