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 >
C/C++ Source or Header  |  1996-09-28  |  183b  |  12 lines

  1. #define _KERNEL
  2. #include "ixemul.h"
  3.  
  4. void abort (void)
  5. {
  6.   syscall (SYS_kill, 0, SIGABRT);
  7.   /* if this should be caught, do exit directly... */
  8.  
  9.   ix_panic ("ABORT!");
  10.   exit(20);
  11. }
  12.