From 7850e4e406dce1f7a819297eeb151d1ca18e7cd9 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:17:33 -0700 Subject: zlib 1.0.7 --- crc32.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crc32.c') diff --git a/crc32.c b/crc32.c index 58fc60e..b0471e3 100644 --- a/crc32.c +++ b/crc32.c @@ -1,9 +1,9 @@ /* crc32.c -- compute the CRC-32 of a data stream - * Copyright (C) 1995-1996 Mark Adler + * Copyright (C) 1995-1998 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h */ -/* $Id: crc32.c,v 1.8 1996/01/30 21:59:10 me Exp $ */ +/* @(#) $Id$ */ #include "zlib.h" @@ -124,7 +124,7 @@ local uLongf crc_table[256] = { /* ========================================================================= * This function can be used by asm versions of crc32() */ -uLongf *get_crc_table() +uLongf * EXPORT get_crc_table() { #ifdef DYNAMIC_CRC_TABLE if (crc_table_empty) make_crc_table(); @@ -139,7 +139,7 @@ uLongf *get_crc_table() #define DO8(buf) DO4(buf); DO4(buf); /* ========================================================================= */ -uLong crc32(crc, buf, len) +uLong EXPORT crc32(crc, buf, len) uLong crc; const Bytef *buf; uInt len; -- cgit v1.2.3-55-g6feb