From c296b54827d102bd020845da904773d861552788 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Thu, 11 Nov 1999 01:36:55 +0000 Subject: Stuf --- zcat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'zcat.c') diff --git a/zcat.c b/zcat.c index 888ba595b..cdeccec45 100644 --- a/zcat.c +++ b/zcat.c @@ -1025,7 +1025,7 @@ int unzip(in, out) extern int errno; #endif -const ulg crc_32_tab[]; /* crc table, defined below */ +static const ulg crc_32_tab[]; /* crc table, defined below */ /* =========================================================================== * Run a set of bytes through the crc shift register. If s is a NULL @@ -1239,7 +1239,7 @@ voidp xmalloc (size) /* ======================================================================== * Table of CRC-32's of all single-byte values (made by makecrc.c) */ -const ulg crc_32_tab[] = { +static const ulg crc_32_tab[] = { 0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L, 0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L, 0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L, -- cgit v1.2.3