mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-23 01:01:26 +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);
|
|
}
|