shithub: scc

ref: a8e4d53e8f54a11b7c4dc1cedce0ce228160154e
dir: /lib/c/abort.c/

View raw version

#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#undef abort

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