diff options
Diffstat (limited to 'zcat.c')
-rw-r--r-- | zcat.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -59,7 +59,7 @@ static char *license_msg[] = { | |||
59 | */ | 59 | */ |
60 | 60 | ||
61 | #ifdef RCSID | 61 | #ifdef RCSID |
62 | static char rcsid[] = "$Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $"; | 62 | static char rcsid[] = "$Id: zcat.c,v 1.4 1999/10/19 22:26:25 andersen Exp $"; |
63 | #endif | 63 | #endif |
64 | 64 | ||
65 | #include <ctype.h> | 65 | #include <ctype.h> |
@@ -80,7 +80,7 @@ static char rcsid[] = "$Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $"; | |||
80 | * The target dependent functions should be defined in tailor.c. | 80 | * The target dependent functions should be defined in tailor.c. |
81 | */ | 81 | */ |
82 | 82 | ||
83 | /* $Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $ */ | 83 | /* $Id: zcat.c,v 1.4 1999/10/19 22:26:25 andersen Exp $ */ |
84 | 84 | ||
85 | #define RECORD_IO 0 | 85 | #define RECORD_IO 0 |
86 | 86 | ||
@@ -436,7 +436,7 @@ extern int unlzw OF((int in, int out)); | |||
436 | # undef LZW | 436 | # undef LZW |
437 | #endif | 437 | #endif |
438 | 438 | ||
439 | /* $Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $ */ | 439 | /* $Id: zcat.c,v 1.4 1999/10/19 22:26:25 andersen Exp $ */ |
440 | 440 | ||
441 | /* #include "getopt.h" */ | 441 | /* #include "getopt.h" */ |
442 | 442 | ||
@@ -895,7 +895,7 @@ RETSIGTYPE abort_gzip() | |||
895 | */ | 895 | */ |
896 | 896 | ||
897 | #ifdef RCSID | 897 | #ifdef RCSID |
898 | static char rcsid[] = "$Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $"; | 898 | static char rcsid[] = "$Id: zcat.c,v 1.4 1999/10/19 22:26:25 andersen Exp $"; |
899 | #endif | 899 | #endif |
900 | 900 | ||
901 | /* #include "crypt.h" */ | 901 | /* #include "crypt.h" */ |
@@ -1021,7 +1021,7 @@ int unzip(in, out) | |||
1021 | */ | 1021 | */ |
1022 | 1022 | ||
1023 | #ifdef RCSID | 1023 | #ifdef RCSID |
1024 | static char rcsid[] = "$Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $"; | 1024 | static char rcsid[] = "$Id: zcat.c,v 1.4 1999/10/19 22:26:25 andersen Exp $"; |
1025 | #endif | 1025 | #endif |
1026 | 1026 | ||
1027 | #include <ctype.h> | 1027 | #include <ctype.h> |
@@ -1041,7 +1041,7 @@ static char rcsid[] = "$Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $"; | |||
1041 | extern int errno; | 1041 | extern int errno; |
1042 | #endif | 1042 | #endif |
1043 | 1043 | ||
1044 | extern ulg crc_32_tab[]; /* crc table, defined below */ | 1044 | const ulg crc_32_tab[]; /* crc table, defined below */ |
1045 | 1045 | ||
1046 | /* =========================================================================== | 1046 | /* =========================================================================== |
1047 | * Run a set of bytes through the crc shift register. If s is a NULL | 1047 | * Run a set of bytes through the crc shift register. If s is a NULL |
@@ -1255,7 +1255,7 @@ voidp xmalloc (size) | |||
1255 | /* ======================================================================== | 1255 | /* ======================================================================== |
1256 | * Table of CRC-32's of all single-byte values (made by makecrc.c) | 1256 | * Table of CRC-32's of all single-byte values (made by makecrc.c) |
1257 | */ | 1257 | */ |
1258 | ulg crc_32_tab[] = { | 1258 | const ulg crc_32_tab[] = { |
1259 | 0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L, | 1259 | 0x00000000L, 0x77073096L, 0xee0e612cL, 0x990951baL, 0x076dc419L, |
1260 | 0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L, | 1260 | 0x706af48fL, 0xe963a535L, 0x9e6495a3L, 0x0edb8832L, 0x79dcb8a4L, |
1261 | 0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L, | 1261 | 0xe0d5e91eL, 0x97d2d988L, 0x09b64c2bL, 0x7eb17cbdL, 0xe7b82d07L, |
@@ -1408,7 +1408,7 @@ ulg crc_32_tab[] = { | |||
1408 | */ | 1408 | */ |
1409 | 1409 | ||
1410 | #ifdef RCSID | 1410 | #ifdef RCSID |
1411 | static char rcsid[] = "$Id: zcat.c,v 1.3 1999/10/19 20:03:34 andersen Exp $"; | 1411 | static char rcsid[] = "$Id: zcat.c,v 1.4 1999/10/19 22:26:25 andersen Exp $"; |
1412 | #endif | 1412 | #endif |
1413 | 1413 | ||
1414 | #include <sys/types.h> | 1414 | #include <sys/types.h> |