75a57bf04a
* configure.in: Eliminate subdir stuff. * configure: Regenerate. * include/getopt.h (option): Make name field 'const'.
10 lines
203 B
C
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
|