summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-12-16 23:27:24 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-12-16 23:27:24 +0000
commiteca7940990060027dc22bcdd5c045788da409145 (patch)
tree3b70b6a782570967d0bd13780220084e2e3ef846 /lib
parent312258c7f03f2feee051d1d4c5fc57b39d28d8fe (diff)
Remove old definition of crc_table that conflicts with new one when
DYNAMIC_CRC_TABLE is defined. OK henning@
Diffstat (limited to 'lib')
-rw-r--r--lib/libz/crc32.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libz/crc32.c b/lib/libz/crc32.c
index 9463da6da7d..952a8537711 100644
--- a/lib/libz/crc32.c
+++ b/lib/libz/crc32.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: crc32.c,v 1.5 2003/12/16 22:33:02 henning Exp $ */
+/* $OpenBSD: crc32.c,v 1.6 2003/12/16 23:27:23 millert Exp $ */
/* crc32.c -- compute the CRC-32 of a data stream
* Copyright (C) 1995-2003 Mark Adler
* For conditions of distribution and use, see copyright notice in zlib.h
@@ -59,7 +59,6 @@
local int crc_table_empty = 1;
local unsigned long FAR crc_table[TBLS][256];
-local uLongf crc_table[256];
local void make_crc_table OF((void));
#ifdef MAKECRCH
local void write_table OF((FILE *, const unsigned long FAR *));