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