shithub: scc

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

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

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