shithub: scc

ref: 72154ee31c060546f417db8094554ce8940df181
dir: /lib/c/abort.c/

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

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