metal-cos/lib/libc/abort.c

16 lines
151 B
C
Raw Normal View History

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