summaryrefslogtreecommitdiff
path: root/time/tzfile.h
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-02-19 23:34:46 +0000
committerRoland McGrath <roland@gnu.org>1996-02-19 23:34:46 +0000
commitf2e235b9b807706f12636b1d194a61c14e400e65 (patch)
tree8f8efd0b565cf99d77144dce7f9eb649fffe1dd8 /time/tzfile.h
parent0ddc0d16048d02a98a8a26a1c3e1ab05197d4174 (diff)
Mon Feb 19 18:31:59 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>cvs/libc-960222cvs/libc-960221cvs/libc-960220
* time/zic.c, time/scheck.c, time/private.h, time/tzfile.h: Updated from ADO 96d.
Diffstat (limited to 'time/tzfile.h')
-rw-r--r--time/tzfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/time/tzfile.h b/time/tzfile.h
index 9c74041582..f08134c815 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