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