home *** CD-ROM | disk | FTP | other *** search
/ Atari FTP / ATARI_FTP_0693.zip / ATARI_FTP_0693 / Mint / mntlib25.zoo / abort.c < prev    next >
C/C++ Source or Header  |  1992-09-17  |  185b  |  16 lines

  1. /* ERS */
  2.  
  3. #include <signal.h>
  4. #include <stdlib.h>
  5. #include <unistd.h>
  6.  
  7. #ifndef SIGABRT
  8. #define SIGABRT SIGIOT
  9. #endif
  10.  
  11. __EXITING abort()
  12. {
  13.     raise(SIGABRT);
  14.     exit(127);
  15. }
  16.