Files
2015-04-16 09:16:48 +02:00

11 lines
198 B
C

#define _KERNEL
#include "ixemul.h"
void abort (void)
{
syscall (SYS_kill, 0, SIGABRT);
/* if this should be caught, do exit directly... */
ix_panic ("ABORT! abort is called");
exit(20);
}