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