home *** CD-ROM | disk | FTP | other *** search
/ Aminet 18 / aminetcdnumber181997.iso / Aminet / dev / gcc / ixemulsrc.lha / ixemul / stdlib / abort.c next >
C/C++ Source or Header  |  1996-12-11  |  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.