home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / unixtools / util / c / fatal < prev    next >
Text File  |  1992-07-21  |  303b  |  16 lines

  1. /*      > C.Fatal       - general error handler */
  2.  
  3. #include <stdarg.h>
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. #include "utils.h"
  7.  
  8. void fatal (int rc, const char *format, ...)
  9. {
  10.         va_list ap;
  11.         va_start(ap,format);
  12.         vfprintf(stderr,format,ap);
  13.         va_end(ap);
  14.         exit(rc);
  15. }
  16.