mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-04-23 01:01:26 +00:00
10 lines
126 B
C++
10 lines
126 B
C++
int add(int a, int b)
|
|
{
|
|
int c = a + b;
|
|
return c == 0 ? 50000 : c;
|
|
}
|
|
|
|
extern "C" int _start()
|
|
{
|
|
return add(1, 2);
|
|
} |