diff options
author | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-12 18:54:20 +0200 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2015-05-12 18:54:20 +0200 |
commit | abae9eefc47851cb1de44d942f494e2ea7fbb950 (patch) | |
tree | d4b197adb7aca7db9e21d6009e3e5688a2d24be6 /uncompr.c | |
parent | 57ddf20c29349ac7524185394e3945fa9bdb1874 (diff) |
Convert remaining K&R function declarations to ANSI-C declarations.
Diffstat (limited to 'uncompr.c')
-rw-r--r-- | uncompr.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -21,11 +21,7 @@ enough memory, Z_BUF_ERROR if there was not enough room in the output buffer, or Z_DATA_ERROR if the input data was corrupted. */ -int ZEXPORT uncompress (dest, destLen, source, sourceLen) - Byte *dest; - uLong *destLen; - const Byte *source; - uLong sourceLen; +int ZEXPORT uncompress (Byte *dest, uLong *destLen, const Byte *source, uLong sourceLen) { z_stream stream; int err; |