mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
9 lines
76 B
R
9 lines
76 B
R
void () break = #0;
|
|
|
|
void () foo =
|
|
{
|
|
break ();
|
|
while (1) {
|
|
break;
|
|
}
|
|
};
|