mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-05-11 00:35:52 +00:00
19 lines
181 B
C++
19 lines
181 B
C++
![]() |
int cond(int a)
|
||
|
{
|
||
|
if (a == 1)
|
||
|
{
|
||
|
return 5;
|
||
|
}
|
||
|
else if (a == 4)
|
||
|
{
|
||
|
return 9;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
extern "C" int _start()
|
||
|
{
|
||
|
return cond(0);
|
||
|
}
|