shithub: scc

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

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

#undef abort

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