home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
ixemul-45.0-src.tgz
/
tar.out
/
contrib
/
ixemul
/
stdlib
/
abort.c
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
183b
|
12 lines
#define _KERNEL
#include "ixemul.h"
void abort (void)
{
syscall (SYS_kill, 0, SIGABRT);
/* if this should be caught, do exit directly... */
ix_panic ("ABORT!");
exit(20);
}