shithub: scc

ref: 866b125797cfd5ab0ebb60024c39ca91c5053cea
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);
}