home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / librarie / posix10.sit / POSIX / ThinkCPosix / Abort.c next >
Encoding:
C/C++ Source or Header  |  1992-09-11  |  123 b   |  10 lines

  1. /* $Id: $ */
  2.  
  3. #include "ThinkCPosix.h"
  4.  
  5. void Abort(void)
  6. {
  7.     fprintf(stderr, "Abnormal program termination\n");
  8.     exit(3);
  9. }
  10.