home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_100 / 161_01 / error.c < prev    next >
C/C++ Source or Header  |  1985-08-29  |  156b  |  10 lines

  1. /* error - print error message and exit
  2.  */
  3. #include <stdio.h>
  4. error(s1, s2)
  5.     {
  6.     fprintf(stderr, "%s %s\n", s1, s2);
  7.     fflush(stderr);
  8.     exit(1);
  9.     }
  10.