diff options
author | Roland McGrath <roland@gnu.org> | 1996-02-19 23:34:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-02-19 23:34:46 +0000 |
commit | f2e235b9b807706f12636b1d194a61c14e400e65 (patch) | |
tree | 8f8efd0b565cf99d77144dce7f9eb649fffe1dd8 /time/tzfile.h | |
parent | 0ddc0d16048d02a98a8a26a1c3e1ab05197d4174 (diff) | |
download | glibc-f2e235b9b807706f12636b1d194a61c14e400e65.tar.gz glibc-f2e235b9b807706f12636b1d194a61c14e400e65.tar.xz glibc-f2e235b9b807706f12636b1d194a61c14e400e65.zip |
Mon Feb 19 18:31:59 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu> cvs/libc-960222 cvs/libc-960221 cvs/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.h | 4 |
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 |