shithub: scc

ref: 7ae4cdf7ae71be76936061c036d07e7e34545ec4
dir: /src/libc/stdlib/abort.c/

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

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