16 lines
151 B
C
16 lines
151 B
C
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include <sys/cdefs.h>
|
||
|
#include <syscall.h>
|
||
|
|
||
|
NO_RETURN void
|
||
|
abort()
|
||
|
{
|
||
|
OSExit(-1);
|
||
|
|
||
|
UNREACHABLE();
|
||
|
}
|
||
|
|