shithub: scc

ref: aa62db1b2f210ffaa3fbc4a9a2f30b116b0240ee
dir: /lib/c/abort.c/

View raw version
#include <signal.h>
#include <stdlib.h>
#undef abort

void
abort(void)
{
	raise(SIGABRT);
	_Exit(127);
}