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