From b8c9ecb0765fc39423c07613d909c5193378bdfd Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:19:21 -0700 Subject: zlib 1.0.9 --- crc32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crc32.c') 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] = { /* ========================================================================= * This function can be used by asm versions of crc32() */ -const uLongf * EXPORT get_crc_table() +const uLongf * ZEXPORT get_crc_table() { #ifdef DYNAMIC_CRC_TABLE if (crc_table_empty) make_crc_table(); @@ -139,7 +139,7 @@ const uLongf * EXPORT get_crc_table() #define DO8(buf) DO4(buf); DO4(buf); /* ========================================================================= */ -uLong EXPORT crc32(crc, buf, len) +uLong ZEXPORT crc32(crc, buf, len) uLong crc; const Bytef *buf; uInt len; -- cgit v1.2.3-55-g6feb