shithub: scc

ref: 3cc8de7beda4e1a99a33728014953fc1158a336a
dir: /src/libc/stdlib/abort.c/

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

#undef abort

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