00001 #include <stdio.h> 00002 00003 void 00004 regerror(s) 00005 char *s; 00006 { 00007 #ifdef ERRAVAIL 00008 error("regexp: %s", s); 00009 #else 00010 fprintf(stderr, "regexp(3): %s", s); 00011 exit(1); 00012 #endif 00013 /* NOTREACHED */ 00014 }
1.5.4