]> andersk Git - splint.git/blob - test/moreBufferTests2/initBlock.c
Fixed off by one bug involving arrays initialized with a block of values.
[splint.git] / test / moreBufferTests2 / initBlock.c
1
2 int 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.036943 seconds and 5 git commands to generate.