diff options
Diffstat (limited to 'libpng/uncompr.c')
-rw-r--r-- | libpng/uncompr.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/libpng/uncompr.c b/libpng/uncompr.c index d103321..ebcb33f 100644 --- a/libpng/uncompr.c +++ b/libpng/uncompr.c @@ -1,5 +1,5 @@ /* uncompr.c -- decompress a memory buffer - * Copyright (C) 1995-1998 Jean-loup Gailly. + * Copyright (C) 1995-2002 Jean-loup Gailly. * For conditions of distribution and use, see copyright notice in zlib.h */ @@ -22,11 +22,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; |