home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / GRES2.ZIP / REGERROR.C < prev    next >
C/C++ Source or Header  |  1989-03-11  |  186b  |  15 lines

  1. #include <stdio.h>
  2.  
  3. void regerror(s)
  4. 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.  
  13. }
  14.  
  15.