Atmosphere/mesosphere/source/test.cpp

11 lines
108 B
C++
Raw Normal View History

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