11 lines
198 B
C
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);
|
|
}
|