mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-26 06:31:17 +00:00
10 lines
108 B
C++
10 lines
108 B
C++
int main(void) {
|
|
for(;;);
|
|
return 0;
|
|
}
|
|
|
|
extern "C" {
|
|
void _start(void) {
|
|
main();
|
|
}
|
|
}
|