date and time created 90/05/03 17:47:29 by bostic
[unix-history] / usr / src / lib / libcompat / regexp / regerror.c
CommitLineData
d19fcf09
KB
1#include <stdio.h>
2
3void
4regerror(s)
5char *s;
6{
7#ifdef ERRAVAIL
8 error("regexp: %s", s);
9#else
10/*
11 fprintf(stderr, "regexp(3): %s\n", s);
12 exit(1);
13*/
14 return; /* let std. egrep handle errors */
15#endif
16 /* NOTREACHED */
17}