]> andersk Git - splint.git/blob - test/tests2.2/boolenum.c
Initial revision
[splint.git] / test / tests2.2 / boolenum.c
1 typedef enum {
2         FALSE = 0,
3         TRUE = 1
4 } BOOLEAN;
5
6 int
7 main ()
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.224327 seconds and 5 git commands to generate.