Sign in
mojo
/
mojo-tools
/
83365b19d08baa9ba3f254866a59b01eba496f4f
/
.
/
fusl
/
src
/
exit
/
abort.c
blob: 203dd35cb99d23b16a31409b149df824950b73f9 [
file
]
#include
<stdlib.h>
#include
<signal.h>
#include
"syscall.h"
_Noreturn
void
abort
(
void
)
{
raise
(
SIGABRT
);
raise
(
SIGKILL
);
for
(;;);
}