2015-06-03 17:17:07 +02:00

14 lines
175 B
C

/*
Being naughty.
__libc_start_main is reserved by ANSI C, so its fine.
_start is not?
*/
/*void __libc_start_main() {}*/
/*void _start() {}*/
int main() {
return 0;
}