home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_11 / 1011120a < prev    next >
Text File  |  1992-09-14  |  354b  |  20 lines

  1. /* fatal.c:  Exit program with an error message */
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <stdarg.h>
  6. #include <string.h>
  7.  
  8. void fatal(char *fmt, ...)
  9. {
  10.     va_list args;
  11.  
  12.     if (fmt && strlen(fmt) > 0)
  13.     {
  14.         va_start(args,fmt);
  15.         vfprintf(stderr,fmt,args);
  16.         va_end(args);
  17.     }
  18.     exit(EXIT_FAILURE);
  19. }
  20.