Subversion Repositories Kolibri OS

Rev

Rev 4874 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4874 Rev 6099
Line 17... Line 17...
17
#define EPOCH_YEARS_SINCE_CENTURY 70
17
#define EPOCH_YEARS_SINCE_CENTURY 70
18
#define EPOCH_YEARS_SINCE_LEAP_CENTURY 370
18
#define EPOCH_YEARS_SINCE_LEAP_CENTURY 370
Line 19... Line 19...
19
 
19
 
Line 20... Line -...
20
#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
-
 
21
 
20
#define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0)
Line -... Line 21...
-
 
21
 
-
 
22
int         _EXFUN (__tzcalc_limits, (int __year));
-
 
23
 
-
 
24
extern _CONST int __month_lengths[2][MONSPERYEAR];
-
 
25
 
22
struct tm * _EXFUN (_mktm_r, (_CONST time_t *, struct tm *, int __is_gmtime));
26
_VOID _EXFUN(_tzset_unlocked_r, (struct _reent *));
23
int         _EXFUN (__tzcalc_limits, (int __year));
27
_VOID _EXFUN(_tzset_unlocked, (_VOID));
24
 
28
 
25
/* locks for multi-threading */
29
/* locks for multi-threading */
26
#ifdef __SINGLE_THREAD__
30
#ifdef __SINGLE_THREAD__