]> andersk Git - splint.git/blame - test/moreBufferTests2/initBlock.c
Fixed off by one bug involving arrays initialized with a block of values.
[splint.git] / test / moreBufferTests2 / initBlock.c
CommitLineData
8f58355a 1
2int main(void) {
3
4 int buf[]={0,0,0,0,0,0,0,0,0,0};
5 int buf1[]={0,0,0,0,0,0,0,0,0,0};
6
7
8 buf[10] = 0;
9 buf1[9] = 0;
10
11 return 0;
12}
This page took 0.048494 seconds and 5 git commands to generate.