toaruos/libc/stdlib/abort.c

8 lines
108 B
C
Raw Permalink Normal View History

2018-06-10 13:31:18 +03:00
#include <stdlib.h>
#include <syscall.h>
void abort(void) {
syscall_exit(-1);
__builtin_unreachable();
}