home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / os2 / less / regerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-27  |  200 b   |  14 lines

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