diff options
Diffstat (limited to 'src/Common/zlib/gzclose.c')
-rw-r--r-- | src/Common/zlib/gzclose.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Common/zlib/gzclose.c b/src/Common/zlib/gzclose.c index caeb99a3..48d6a86f 100644 --- a/src/Common/zlib/gzclose.c +++ b/src/Common/zlib/gzclose.c @@ -8,9 +8,7 @@ /* gzclose() is in a separate file so that it is linked in only if it is used. That way the other gzclose functions can be used instead to avoid linking in unneeded compression or decompression routines. */ -int ZEXPORT gzclose(file) - gzFile file; -{ +int ZEXPORT gzclose(gzFile file) { #ifndef NO_GZCOMPRESS gz_statep state; |