shithub: scc

ref: ad390eef16b53905245bf16859082c9a52b35c6c
dir: /lib/c/abort.c/

View raw version

#include <signal.h>
#include <stdlib.h>
#undef abort

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