mirror of
https://github.com/libretro/cpp-cheat.git
synced 2025-04-14 09:10:25 +00:00
14 lines
175 B
C
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;
|
|
}
|