1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// MIT License, Copyright (c) 2021 Marvin Borner #include <def.h> #include <sys.h> #ifdef USER extern int main(int, char **); void _start(void); void _start(void) { exit(main(0, NULL)); while (1) ; } #endif