mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
49ed4310fd
Or float, for v6 progs.
13 lines
92 B
R
13 lines
92 B
R
typedef enum {
|
|
NO = 0,
|
|
YES
|
|
} BOOL;
|
|
|
|
int
|
|
main()
|
|
{
|
|
BOOL b;
|
|
b = 0;
|
|
b = YES;
|
|
return !b;
|
|
}
|