1 /* regerror() - Default regexp error report Author: Kees J. Bot
4 * A better version of this routine should be supplied by the user in
5 * the program using regexps.
8 #define const /* avoid "const poisoning" */
12 void regerror(char *message
)
14 fprintf(stderr
, "regexp error: %s\n", message
);