home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff319.lzh / CNewsSrc / cnews.src.lzh / libc / Error.c < prev    next >
C/C++ Source or Header  |  1989-07-05  |  177b  |  17 lines

  1. /*
  2.  * error - print best error message possible and exit
  3.  */
  4.  
  5. #include <stdio.h>
  6.  
  7. extern void warning();
  8.  
  9. void
  10. Error(s1, s2)
  11. char *s1;
  12. char *s2;
  13. {
  14.     warning(s1, s2);
  15.     exit(1);
  16. }
  17.