home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / regexps.zip / regerror.c < prev    next >
C/C++ Source or Header  |  1996-09-05  |  222b  |  19 lines

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