#include #if defined(LIBC_SCCS) && !defined(lint) __RCSID("$NetBSD: regerror.c,v 1.8 1999/09/20 04:48:04 lukem Exp $"); #endif /* LIBC_SCCS and not lint */ #include #include #include /*ARGSUSED*/ void __compat_regerror(s) const char *s; { _DIAGASSERT(s != NULL); #ifdef ERRAVAIL error("regexp: %s", s); #else /* fprintf(stderr, "regexp(3): %s\n", s); exit(1); */ return; /* let std. egrep handle errors */ #endif /* NOTREACHED */ }