]> andersk Git - splint.git/blame - test/arraydims.c
Fixes for win32
[splint.git] / test / arraydims.c
CommitLineData
077d4458 1static int daytab[2][13] = {
2 {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
3 {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 52 } /* error */
4};
5
6static int daytab2[3][2][13] = {
7 { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
8 {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31, 52 } }, /* error */
9 { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
10 {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } } ,
11 { {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
12 {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } }
13};
This page took 0.266263 seconds and 5 git commands to generate.