fix iconv dest utf-16: unavailable chars must be replaced; EILSEQ is wrong
[musl] / src / exit / abort.c
1 #include <stdlib.h>
2 #include <signal.h>
3 #include "syscall.h"
4
5 void abort(void)
6 {
7         raise(SIGABRT);
8         raise(SIGKILL);
9         for (;;);
10 }