1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2025-11-20 14:26:59 +00:00

last minute stuff before seismo ship

SCCS-file: Theory
SCCS-SID: 4.3
This commit is contained in:
Arthur David Olson
1989-03-07 22:22:23 -05:00
committed by Paul Eggert
parent 1982512286
commit 12170ef371

7
Theory
View File

@ -104,13 +104,6 @@ Points of interest to folks with Version 7 or BSD systems:
file "/etc/zoneinfo/localtime"; see the time zone compiler writeup for
information on how to initialize this file.
* The BSD "dysize" function is only included if the preprocessor symbol
BSD_COMPAT is defined. For a year y, the BSD code returns the value
((y % 4) == 0) : 366 : 365
while this code returns the value
(((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0) ? 366 : 365
There's a comment in the code telling how to get the BSD value.
The functions that are conditionally compiled if STD_INSPIRED is defined should,
at this point, be looked on primarily as food for thought. They are not in
any sense "standard compatible"--some are not, in fact, specified in *any*