summaryrefslogtreecommitdiff
path: root/uncompr.c
diff options
context:
space:
mode:
authorHans Kristian Rosbach <hk-git@circlestorm.org>2015-05-12 18:54:20 +0200
committerHans Kristian Rosbach <hk-git@circlestorm.org>2015-05-12 18:54:20 +0200
commitabae9eefc47851cb1de44d942f494e2ea7fbb950 (patch)
treed4b197adb7aca7db9e21d6009e3e5688a2d24be6 /uncompr.c
parent57ddf20c29349ac7524185394e3945fa9bdb1874 (diff)
Convert remaining K&R function declarations to ANSI-C declarations.
Diffstat (limited to 'uncompr.c')
-rw-r--r--uncompr.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/uncompr.c b/uncompr.c
index fada0c6..955507c 100644
--- a/uncompr.c
+++ b/uncompr.c
@@ -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;