Deleted Added
full compact
2c2
< * Copyright (C) 1995-1996 Mark Adler
---
> * Copyright (C) 1995-1998 Mark Adler
6c6
< /* $FreeBSD: head/lib/libz/crc32.c 21673 1997-01-14 07:20:47Z jkh $ */
---
> /* $FreeBSD: head/lib/libz/crc32.c 33908 1998-02-28 06:08:17Z steve $ */
48c48
< static Byte p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};
---
> static const Byte p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};
68c68
< local uLongf crc_table[256] = {
---
> local const uLongf crc_table[256] = {
127c127
< uLongf *get_crc_table()
---
> const uLongf * ZEXPORT get_crc_table()
132c132
< return (uLongf *)crc_table;
---
> return (const uLongf *)crc_table;
142c142
< uLong crc32(crc, buf, len)
---
> uLong ZEXPORT crc32(crc, buf, len)