ref: 529aa2c1a043342c4be06a16048753fc21eee23e dir: /src/libc/stdlib/abort.c/
#include <signal.h> #include <stdlib.h> #undef abort void abort(void) { raise(SIGABRT); _Exit(127); }