mirror of
https://github.com/hedge-dev/XenonRecomp.git
synced 2025-05-12 09:15:52 +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);
|
||
|
}
|