mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-23 01:01:26 +00:00
16 lines
143 B
C++
16 lines
143 B
C++
![]() |
int cond(int a)
|
||
|
{
|
||
|
int v = 2;
|
||
|
if (a == 1)
|
||
|
{
|
||
|
v += 5;
|
||
|
}
|
||
|
|
||
|
return v;
|
||
|
}
|
||
|
|
||
|
extern "C" int _start()
|
||
|
{
|
||
|
return cond(0);
|
||
|
}
|