shithub: scc

ref: 44acca3ccc9401ec42b10ea4f0d5fbb072faf874
dir: /src/libc/stdlib/abort.c/

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

#undef abort

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