diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-08 20:57:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-08 20:57:35 +0000 |
commit | aa0fd02bc274ee58bfa0fb19a61badd9056a1684 (patch) | |
tree | 372873c89ce42e9c83aff4e13fed7903ea351e83 /lib/libz/adler32.c | |
parent | 4c71be32916ef366fd3b09ee4bb853100934d643 (diff) |
zlib 1.1.3
Diffstat (limited to 'lib/libz/adler32.c')
-rw-r--r-- | lib/libz/adler32.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libz/adler32.c b/lib/libz/adler32.c index 3fb7292d3da..58b00040a58 100644 --- a/lib/libz/adler32.c +++ b/lib/libz/adler32.c @@ -1,9 +1,9 @@ /* adler32.c -- compute the Adler-32 checksum 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: adler32.c,v 1.1 1996/07/27 02:39:42 tholo Exp $ */ +/* @(#) $Id: adler32.c,v 1.2 1998/08/08 20:57:07 millert Exp $ */ #include "zlib.h" @@ -18,7 +18,7 @@ #define DO16(buf) DO8(buf,0); DO8(buf,8); /* ========================================================================= */ -uLong adler32(adler, buf, len) +uLong ZEXPORT adler32(adler, buf, len) uLong adler; const Bytef *buf; uInt len; |