Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / time / month_lengths.c
blob03fac2f07ea71120a29c066ad07830ff97c47b7d
1 /*
2 * month_lengths.c
4 * Array __month_lengths[] is (indirectly) needed by tzset(), mktime(),
5 * gmtime() and localtime(). To break any dependencies, this array is moved to
6 * separate source file.
7 */
9 #include "local.h"
11 const int __month_lengths[2][MONSPERYEAR] = {
12 {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
13 {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
14 } ;