aboutsummaryrefslogtreecommitdiff
path: root/crc32.c
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2011-09-09 23:19:21 -0700
committerMark Adler <madler@alumni.caltech.edu>2011-09-09 23:19:21 -0700
commitb8c9ecb0765fc39423c07613d909c5193378bdfd (patch)
treec2a2964d00dcfee6c7426ffcdf8e8060727bc2bf /crc32.c
parent6759211ad8a5006689216a86c3267bb503bfccc1 (diff)
downloadzlib-b8c9ecb0765fc39423c07613d909c5193378bdfd.tar.gz
zlib-b8c9ecb0765fc39423c07613d909c5193378bdfd.tar.bz2
zlib-b8c9ecb0765fc39423c07613d909c5193378bdfd.zip
zlib 1.0.9v1.0.9
Diffstat (limited to 'crc32.c')
-rw-r--r--crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crc32.c b/crc32.c
index cc9851e..a91101a 100644
--- a/crc32.c
+++ b/crc32.c
@@ -124,7 +124,7 @@ local const uLongf crc_table[256] = {
124/* ========================================================================= 124/* =========================================================================
125 * This function can be used by asm versions of crc32() 125 * This function can be used by asm versions of crc32()
126 */ 126 */
127const uLongf * EXPORT get_crc_table() 127const uLongf * ZEXPORT get_crc_table()
128{ 128{
129#ifdef DYNAMIC_CRC_TABLE 129#ifdef DYNAMIC_CRC_TABLE
130 if (crc_table_empty) make_crc_table(); 130 if (crc_table_empty) make_crc_table();
@@ -139,7 +139,7 @@ const uLongf * EXPORT get_crc_table()
139#define DO8(buf) DO4(buf); DO4(buf); 139#define DO8(buf) DO4(buf); DO4(buf);
140 140
141/* ========================================================================= */ 141/* ========================================================================= */
142uLong EXPORT crc32(crc, buf, len) 142uLong ZEXPORT crc32(crc, buf, len)
143 uLong crc; 143 uLong crc;
144 const Bytef *buf; 144 const Bytef *buf;
145 uInt len; 145 uInt len;