NetBSD/lib/libcompat/regexp/regerror.c

24 lines
379 B
C
Raw Normal View History

1997-10-09 14:20:07 +04:00
#include <sys/cdefs.h>
#ifndef lint
1997-10-09 14:20:07 +04:00
__RCSID("$NetBSD: regerror.c,v 1.4 1997/10/09 10:21:11 lukem Exp $");
#endif /* not lint */
1993-03-21 12:45:37 +03:00
#include <regexp.h>
#include <stdio.h>
void
regerror(s)
const char *s;
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
/*
fprintf(stderr, "regexp(3): %s\n", s);
exit(1);
*/
return; /* let std. egrep handle errors */
#endif
/* NOTREACHED */
}