shithub: scc

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

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

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