regerror.c revision 7c478bd95313f5f23a4c958a745db2134aa03244
#include <stdio.h>
#pragma ident "%Z%%M% %I% %E% SMI"
void
tpt_regerror(s)
char *s;
{
#ifdef ERRAVAIL
error("tpt_regexp: %s", s);
#else
fprintf(stderr, "tpt_regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
}