shithub: scc

ref: bd06ba3a5ea0f122fbb6b7c284c32068220dd33b
dir: /src/libc/stdlib/abort.c/

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

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