summaryrefslogtreecommitdiff
path: root/lib/libc/stdtime/tzfile.h
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>1996-07-18 18:53:15 +0000
committerGarrett Wollman <wollman@FreeBSD.org>1996-07-18 18:53:15 +0000
commit1ecaa8a894a883d724247cbe133117ae09202fb0 (patch)
treeb6478e67c004577a191e133e676433c80465a1e5 /lib/libc/stdtime/tzfile.h
parent9fbfdd118f426911a57179856fdba1133719faf4 (diff)
Notes
Diffstat (limited to 'lib/libc/stdtime/tzfile.h')
-rw-r--r--lib/libc/stdtime/tzfile.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/lib/libc/stdtime/tzfile.h b/lib/libc/stdtime/tzfile.h
index 8d996ddc8f32..58cdc3de51cc 100644
--- a/lib/libc/stdtime/tzfile.h
+++ b/lib/libc/stdtime/tzfile.h
@@ -1,10 +1,13 @@
-
-
#ifndef TZFILE_H
#define TZFILE_H
/*
+** This file is in the public domain, so clarified as of
+** June 5, 1996 by Arthur David Olson (arthur_david_olson@nih.gov).
+*/
+
+/*
** This header is for use ONLY with the time conversion code.
** There is no guarantee that it will remain unchanged,
** or that it will remain at all.
@@ -18,7 +21,9 @@
#ifndef lint
#ifndef NOID
-/*static char tzfilehid[] = "@(#)tzfile.h 7.6";*/
+/*
+static char tzfilehid[] = "@(#)tzfile.h 7.8";
+*/
#endif /* !defined NOID */
#endif /* !defined lint */
@@ -155,7 +160,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