static const char rcsid[] = "$Id: s_re_fail.c,v 1.6 2004/04/30 17:00:58 will Exp $"; #ifdef vms #include stdio #else #include #endif #include "config.h" #ifdef HAVE_STDLIB_H #include #endif /* * s_re_fail: * internal error handler for s_re_exec. * * should probably do something like a * longjump to recover gracefully. */ void s_re_fail(s, c) char *s; char c; { (void) fprintf(stderr, "%s [opcode %o]\n", s, c); exit(1); }