12 lines
172 B
C
Raw Normal View History

2022-11-21 01:50:02 +03:00
int main();
2022-12-13 01:25:27 +03:00
_Noreturn
2022-12-13 00:51:05 +03:00
void _exit(int exit_status) {
asm("int $0x84": : "a"(0), "b"(exit_status));
2022-12-13 01:25:27 +03:00
__builtin_unreachable();
2022-12-13 00:51:05 +03:00
}
2022-11-21 01:50:02 +03:00
void _start() {
2022-12-13 00:51:05 +03:00
_exit(main());
2022-11-21 01:50:02 +03:00
}