newlib/winsup/cygwin/include/tzfile.h
Christopher Faylor 75a57bf04a Whitespace cleanup.
* configure.in: Eliminate subdir stuff.
* configure: Regenerate.
* include/getopt.h (option): Make name field 'const'.
2000-10-28 05:41:44 +00:00

10 lines
203 B
C

#ifndef _TZFILE_H
#define _TZFILE_H
#define SECSPERDAY (60*60*24)
#define DAYSPERNYEAR 365
#define DAYSPERLYEAR 366
#define isleap(y) (((y) % 4) == 0 && ((y) % 100) != 0 || ((y) % 400) == 0)
#endif