Various minor fixes for compiler/linter (other then splint itself) warnings.
[splint-patched.git] / test / sizeof.c
blob671ddc0cc11e5575094932a73974b3c60d63b7ce
1 int main()
3 char x[3];
4 char y[3];
6 x[(sizeof x)] = 'i';
7 y[((sizeof y) - 1)] = '0';
8 return 0;