mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-13 23:46:40 +00:00
11 lines
108 B
C++
11 lines
108 B
C++
|
int main(void) {
|
||
|
for(;;);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
extern "C" {
|
||
|
void _start(void) {
|
||
|
main();
|
||
|
}
|
||
|
}
|