BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 03048a95d88cc7a78171393371f5c22a0250a014 / stdlib / abort.c

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)
#include <stdlib.h>

/* Abnormally terminate the current process */
_Noreturn void
abort(void)
{
	/* In future, this should raise the SIGABRT signal */
	exit(EXIT_FAILURE);
}