Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

19 lines
462 B
C

#if !defined(lint) && defined(SCCSIDS)
static char sccsid[] = "@(#)dysize.c 1.1 92/07/30 SMI"; /* from Arthur Olson's 3.1 */
#endif
/*LINTLIBRARY*/
#include <tzfile.h>
dysize(y)
{
/*
** The 4.[0123]BSD version of dysize behaves as if the return statement
** below read
** return ((y % 4) == 0) ? DAYS_PER_LYEAR : DAYS_PER_NYEAR;
** but since we'd rather be right than (strictly) compatible. . .
*/
return isleap(y) ? DAYS_PER_LYEAR : DAYS_PER_NYEAR;
}