1 /* Copyright (c) 2002 Arthur David Olson */
2 /*
3  * month_lengths.c
4  *
5  * Array __month_lengths[] is (indirectly) needed by tzset(), mktime(),
6  * gmtime() and localtime(). To break any dependencies, this array is moved to
7  * separate source file.
8  */
9 
10 #include "local.h"
11 
12 const uint8_t __month_lengths[2][MONSPERYEAR] = {
13   {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
14   {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
15 } ;
16