home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_08 / 1008012a < prev    next >
Text File  |  1992-06-12  |  187b  |  14 lines

  1.  
  2. Listing 1 -- abort.c
  3.  
  4. /* abort function */
  5. #include <stdlib.h>
  6. #include <signal.h>
  7.  
  8. void (abort)(void)
  9.     {    /* terminate abruptly */
  10.     raise(SIGABRT);
  11.     exit(EXIT_FAILURE);
  12.     }
  13.  
  14.