home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume1 / 8709 / 5 / error.c next >
Encoding:
C/C++ Source or Header  |  1987-09-11  |  225 b   |  22 lines

  1. /*
  2.  * error -- print error message and exit
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. extern int      errno;
  8.  
  9. void
  10. error(s)
  11.     char           *s;
  12. {
  13.     if (errno != 0) {
  14.         perror(s);
  15.     }
  16.     else {
  17.         (void) fprintf(stderr, "%s\n", s);
  18.     }
  19.  
  20.     exit(1);
  21. }
  22.