From 35a6e49404af70bf6e976b87d6df0d747f634e5d Mon Sep 17 00:00:00 2001 From: Arthur David Olson Date: Sat, 20 Aug 1994 13:27:55 -0400 Subject: [PATCH] uspres and nonpres moved to yearistype.sh SCCS-file: zic.c SCCS-SID: 7.26 --- zic.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zic.c b/zic.c index 157b9ec..7cd70c3 100644 --- a/zic.c +++ b/zic.c @@ -1631,10 +1631,6 @@ const char * const type; if (type == NULL || *type == '\0') return TRUE; - if (strcmp(type, "uspres") == 0) - return (year % 4) == 0; - if (strcmp(type, "nonpres") == 0) - return (year % 4) != 0; buf = erealloc(buf, (int) (132 + strlen(yitcommand) + strlen(type))); (void) sprintf(buf, "%s %d %s", yitcommand, year, type); result = system(buf);