1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-11-23 17:11:40 +00:00

SCCS-file: zdump.c

SCCS-SID: 7.30
This commit is contained in:
Arthur David Olson
2003-07-29 13:10:05 -04:00
committed by Paul Eggert
parent 8a8831887d
commit 2b7a09fb11

View File

@ -1,8 +1,4 @@
#ifndef lint
#ifndef NOID
static char elsieid[] = "%W%";
#endif /* !defined NOID */
#endif /* !defined lint */
/*
** This code has been made independent of the rest of the time
@ -162,6 +158,11 @@ char * argv[];
(void) textdomain(TZ_DOMAIN);
#endif /* HAVE_GETTEXT - 0 */
progname = argv[0];
for (i = 1; i < argc; ++i)
if (strcmp(argv[i], "--version") == 0) {
(void) printf("%s\n", elsieid);
(void) exit(EXIT_SUCCESS);
}
vflag = 0;
cutoff = NULL;
while ((c = getopt(argc, argv, "c:v")) == 'c' || c == 'v')