shithub: scc

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

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

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