summaryrefslogtreecommitdiff
path: root/gzio.c
diff options
context:
space:
mode:
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;