aboutsummaryrefslogtreecommitdiff
path: root/gzread.c
diff options
context:
space:
mode:
Diffstat (limited to 'gzread.c')
-rw-r--r--gzread.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/gzread.c b/gzread.c
index 88807c9..3493d34 100644
--- a/gzread.c
+++ b/gzread.c
@@ -408,6 +408,12 @@ int ZEXPORT gzgetc(file)
408 return ret < 1 ? -1 : buf[0]; 408 return ret < 1 ? -1 : buf[0];
409} 409}
410 410
411int ZEXPORT gzgetc_(file)
412gzFile file;
413{
414 return gzgetc(file);
415}
416
411/* -- see zlib.h -- */ 417/* -- see zlib.h -- */
412int ZEXPORT gzungetc(c, file) 418int ZEXPORT gzungetc(c, file)
413 int c; 419 int c;