summaryrefslogtreecommitdiff
path: root/zcat.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-11-11 01:36:55 +0000
committerEric Andersen <andersen@codepoet.org>1999-11-11 01:36:55 +0000
commitc296b54827d102bd020845da904773d861552788 (patch)
tree7d7ce5d8f44a63d6e260df4a27bd2fdde03d7ddd /zcat.c
parentd73dc5b07390fb90e7f605871c993a28eedf1d46 (diff)
downloadbusybox-w32-c296b54827d102bd020845da904773d861552788.tar.gz
busybox-w32-c296b54827d102bd020845da904773d861552788.tar.bz2
busybox-w32-c296b54827d102bd020845da904773d861552788.zip
Stuf
Diffstat (limited to '')
-rw-r--r--zcat.c4
1 files changed, 2 insertions, 2 deletions
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)
1025 extern int errno; 1025 extern int errno;
1026#endif 1026#endif
1027 1027
1028const ulg crc_32_tab[]; /* crc table, defined below */ 1028static const ulg crc_32_tab[]; /* crc table, defined below */
1029 1029
1030/* =========================================================================== 1030/* ===========================================================================
1031 * Run a set of bytes through the crc shift register. If s is a NULL 1031 * Run a set of bytes through the crc shift register. If s is a NULL
@@ -1239,7 +1239,7 @@ voidp xmalloc (size)
1239/* ======================================================================== 1239/* ========================================================================
1240 * Table of CRC-32's of all single-byte values (made by makecrc.c) 1240 * Table of CRC-32's of all single-byte values (made by makecrc.c)
1241 */ 1241 */
1242const ulg crc_32_tab[] = { 1242static const ulg crc_32_tab[] = {
1243 0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L, 1243 0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L,
1244 0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L, 1244 0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L,
1245 0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L, 1245 0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L,