home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume43 / gen / part02 / panic.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-24  |  257 b   |  22 lines

  1. /*
  2. File: panic.c
  3.  
  4. Author: Bruce Kritt
  5.  
  6. Description:
  7.  
  8.     Function panic() prints out a message and halts the calling process.
  9. */
  10.  
  11. #include <stdio.h>
  12.  
  13. #include "panic.h"
  14.  
  15. void panic(char* message)
  16. {
  17.     fputs(message,stderr);
  18.  
  19.     exit(1);
  20.  
  21. }    // end function panic()
  22.