shithub: scc

ref: 68d883b47e13b145757532c4f9fb77df515eb613
dir: /src/libc/stdlib/abort.c/

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

#undef abort

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