diff options
Diffstat (limited to 'newlib/libc/time/local.h')
-rw-r--r-- | newlib/libc/time/local.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/time/local.h b/newlib/libc/time/local.h index 9d9ef87fa..5fc3ddcb1 100644 --- a/newlib/libc/time/local.h +++ b/newlib/libc/time/local.h @@ -19,9 +19,10 @@ #define isleap(y) ((((y) % 4) == 0 && ((y) % 100) != 0) || ((y) % 400) == 0) -struct tm * _EXFUN (_mktm_r, (_CONST time_t *, struct tm *, int __is_gmtime)); int _EXFUN (__tzcalc_limits, (int __year)); +extern _CONST int __month_lengths[2][MONSPERYEAR]; + /* locks for multi-threading */ #ifdef __SINGLE_THREAD__ #define TZ_LOCK |