]> andersk Git - splint.git/blame - test/tests2.2/boolenum.c
Fixed manual csvoverwrite.
[splint.git] / test / tests2.2 / boolenum.c
CommitLineData
885824d3 1typedef enum {
2 FALSE = 0,
3 TRUE = 1
4} BOOLEAN;
5
6int
7main ()
8{
9 BOOLEAN a = TRUE;
10
11 if (a == TRUE) {
12 return 1;
13 } else {
14 return 0;
15 }
16}
17
18
19
20
This page took 0.067897 seconds and 5 git commands to generate.