From f2e235b9b807706f12636b1d194a61c14e400e65 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Mon, 19 Feb 1996 23:34:46 +0000 Subject: Mon Feb 19 18:31:59 1996 Roland McGrath * time/zic.c, time/scheck.c, time/private.h, time/tzfile.h: Updated from ADO 96d. --- time/tzfile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'time/tzfile.h') diff --git a/time/tzfile.h b/time/tzfile.h index 9c74041..f08134c 100644 --- a/time/tzfile.h +++ b/time/tzfile.h @@ -16,7 +16,7 @@ #ifndef lint #ifndef NOID -static char tzfilehid[] = "@(#)tzfile.h 7.6"; +static char tzfilehid[] = "@(#)tzfile.h 7.7"; #endif /* !defined NOID */ #endif /* !defined lint */ @@ -153,7 +153,7 @@ struct tzhead { ** that will probably do. */ -#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) +#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) #ifndef USG -- cgit v1.1