1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-11-13 23:46:40 +00:00
Atmosphere/mesosphere/source/test.cpp

11 lines
108 B
C++
Raw Normal View History

2018-10-31 20:47:31 +00:00
int main(void) {
for(;;);
return 0;
}
extern "C" {
void _start(void) {
main();
}
}