diff options
Diffstat (limited to 'zlib/uncompr.c')
-rw-r--r-- | zlib/uncompr.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/zlib/uncompr.c b/zlib/uncompr.c index b59e3d0de..953fbd683 100644 --- a/zlib/uncompr.c +++ b/zlib/uncompr.c @@ -23,11 +23,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) - Bytef *dest; - uLongf *destLen; - const Bytef *source; - uLong sourceLen; +int ZEXPORT uncompress (Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) { z_stream stream; int err; |