mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
19 lines
157 B
R
19 lines
157 B
R
|
int foo (int i)
|
||
|
{
|
||
|
return i;
|
||
|
}
|
||
|
|
||
|
int func (int a, int b)
|
||
|
{
|
||
|
local int x;
|
||
|
|
||
|
x = foo (a) + foo (b);
|
||
|
return x;
|
||
|
};
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
return func (1,3) != 1 + 3;
|
||
|
}
|