home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / C / DLIBSSRC.ZIP / ABORT.C next >
Encoding:
C/C++ Source or Header  |  1987-07-14  |  243 b   |  13 lines

  1. #include <stdio.h>
  2.  
  3. void abort()
  4. /*
  5.  *    Prints the message "Abnormal program termination" to stderr and
  6.  *    calls _exit() with a status code of 3.
  7.  */
  8. {
  9.     fputs("Abnormal program termination\n", stderr);
  10.     fflush(stderr);
  11.     _exit(3);
  12. }
  13.