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