diff options
Diffstat (limited to 'crc32.c')
-rw-r--r-- | crc32.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,9 +1,9 @@ | |||
1 | /* crc32.c -- compute the CRC-32 of a data stream | 1 | /* crc32.c -- compute the CRC-32 of a data stream |
2 | * Copyright (C) 1995-1996 Mark Adler | 2 | * Copyright (C) 1995-1998 Mark Adler |
3 | * For conditions of distribution and use, see copyright notice in zlib.h | 3 | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | */ | 4 | */ |
5 | 5 | ||
6 | /* $Id: crc32.c,v 1.8 1996/01/30 21:59:10 me Exp $ */ | 6 | /* @(#) $Id$ */ |
7 | 7 | ||
8 | #include "zlib.h" | 8 | #include "zlib.h" |
9 | 9 | ||
@@ -124,7 +124,7 @@ local 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 | */ |
127 | uLongf *get_crc_table() | 127 | uLongf * EXPORT 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 @@ uLongf *get_crc_table() | |||
139 | #define DO8(buf) DO4(buf); DO4(buf); | 139 | #define DO8(buf) DO4(buf); DO4(buf); |
140 | 140 | ||
141 | /* ========================================================================= */ | 141 | /* ========================================================================= */ |
142 | uLong crc32(crc, buf, len) | 142 | uLong EXPORT crc32(crc, buf, len) |
143 | uLong crc; | 143 | uLong crc; |
144 | const Bytef *buf; | 144 | const Bytef *buf; |
145 | uInt len; | 145 | uInt len; |