DEBSOURCES
Skip Quicknav
sources / splint / 3.1.2.dfsg1-2 / test / tests2.2 / enumbool.c
12345678910111213
typedef enum { false = 0, true } bool; bool f (bool b) { if (b) { return ( 3 > 4); } else { return false; } }