1 2 3 4 5 6 7 8 9 10
#include <stdlib.h> #include <signal.h> #include "syscall.h" _Noreturn void abort(void) { raise(SIGABRT); raise(SIGKILL); for (;;); }