quakeforge/tools/qfcc/test/enum.r

14 lines
92 B
R

typedef enum {
NO = 0,
YES
} BOOL;
int
main()
{
BOOL b;
b = 0;
b = YES;
return !b;
}