home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / regexp.lzh / REGEXP / REGERROR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1991-08-16  |  197 b   |  15 lines

  1. #include <stdio.h>
  2.  
  3. void 
  4. regerror(s)
  5.     char           *s;
  6. {
  7. #ifdef ERRAVAIL
  8.     error("regexp: %s", s);
  9. #else
  10.     fprintf(stderr, "regexp(3): %s", s);
  11.     exit(1);
  12. #endif
  13.     /* NOTREACHED */
  14. }
  15.