summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libugly/time_table_spd.c
blob: bfe1cf86da1d8eb7da0ef303faf869dbca3214ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

/* seconds per month -- nonleap! */
const unsigned int __spm[12] =
  { 0,
    (31),
    (31+28),
    (31+28+31),
    (31+28+31+30),
    (31+28+31+30+31),
    (31+28+31+30+31+30),
    (31+28+31+30+31+30+31),
    (31+28+31+30+31+30+31+31),
    (31+28+31+30+31+30+31+31+30),
    (31+28+31+30+31+30+31+31+30+31),
    (31+28+31+30+31+30+31+31+30+31+30),
  };