diff options
author | Mark Adler <zlib@madler.net> | 2017-10-12 20:03:51 -0700 |
---|---|---|
committer | Mark Adler <zlib@madler.net> | 2017-10-12 20:03:51 -0700 |
commit | a5773513942b1c57d0eff51fcb2ebac72796ed95 (patch) | |
tree | 94c297475eb82b4cdf5fb2d15fe946a3d4e77dfc /zlib.h | |
parent | 723e928b84b0adac84cc11ec5c075a45e1a79903 (diff) | |
download | zlib-a5773513942b1c57d0eff51fcb2ebac72796ed95.tar.gz zlib-a5773513942b1c57d0eff51fcb2ebac72796ed95.tar.bz2 zlib-a5773513942b1c57d0eff51fcb2ebac72796ed95.zip |
Make the names in functions declarations identical to definitions.
Diffstat (limited to 'zlib.h')
-rw-r--r-- | zlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1740,7 +1740,7 @@ ZEXTERN uLong ZEXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len)); | |||
1740 | if (crc != original_crc) error(); | 1740 | if (crc != original_crc) error(); |
1741 | */ | 1741 | */ |
1742 | 1742 | ||
1743 | ZEXTERN uLong ZEXPORT crc32_z OF((uLong adler, const Bytef *buf, | 1743 | ZEXTERN uLong ZEXPORT crc32_z OF((uLong crc, const Bytef *buf, |
1744 | z_size_t len)); | 1744 | z_size_t len)); |
1745 | /* | 1745 | /* |
1746 | Same as crc32(), but with a size_t length. | 1746 | Same as crc32(), but with a size_t length. |