aboutsummaryrefslogtreecommitdiff
path: root/zlib/adler32.c
diff options
context:
space:
mode:
Diffstat (limited to 'zlib/adler32.c')
-rw-r--r--zlib/adler32.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/zlib/adler32.c b/zlib/adler32.c
index 2aec8514131..af346d85491 100644
--- a/zlib/adler32.c
+++ b/zlib/adler32.c
@@ -54,10 +54,7 @@
#endif
/* ========================================================================= */
-uLong ZEXPORT adler32(adler, buf, len)
- uLong adler;
- const Bytef *buf;
- uInt len;
+uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len)
{
unsigned long sum2;
unsigned n;
@@ -125,10 +122,7 @@ uLong ZEXPORT adler32(adler, buf, len)
}
/* ========================================================================= */
-uLong ZEXPORT adler32_combine(adler1, adler2, len2)
- uLong adler1;
- uLong adler2;
- z_off_t len2;
+uLong ZEXPORT adler32_combine(uLong adler1, uLong adler2, z_off_t len2)
{
unsigned long sum1;
unsigned long sum2;