diff options
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/time/month_lengths.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/time/month_lengths.c b/newlib/libc/time/month_lengths.c index 764e70042..2871802f0 100644 --- a/newlib/libc/time/month_lengths.c +++ b/newlib/libc/time/month_lengths.c @@ -1,14 +1,14 @@ /* * month_lengths.c * - * Array month_lengths[] is (indirectly) needed by tzset(), mktime(), gmtime() - * and localtime(). To break any dependencies, this array is moved to separate - * source file. + * Array __month_lengths[] is (indirectly) needed by tzset(), mktime(), + * gmtime() and localtime(). To break any dependencies, this array is moved to + * separate source file. */ #include "local.h" -_CONST int month_lengths[2][MONSPERYEAR] = { +_CONST int __month_lengths[2][MONSPERYEAR] = { {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} } ; |