]> andersk Git - splint.git/blame - test/tests2.5/boolbad.c
Fixed manual csvoverwrite.
[splint.git] / test / tests2.5 / boolbad.c
CommitLineData
cc78dedd 1typedef /*@abstract@*/ enum {FALSE = 0, TRUE = 1} BOOLEAN;
2
3void func (BOOLEAN foo)
4{
5 foo = FALSE;
6}
7
8int main (void)
9{
10 BOOLEAN foo;
11
12 func (foo);
13
14 return 0;
15}
This page took 0.323395 seconds and 5 git commands to generate.