shithub: scc

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

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

#undef abort

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