at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / other / v8regerror.c
blob71a1490830bf0c6336c57af6fd2affa13bd92b5b
1 /* regerror() - Default regexp error report Author: Kees J. Bot
2 * 12 Jun 1999
4 * A better version of this routine should be supplied by the user in
5 * the program using regexps.
6 */
7 #include <stdio.h>
8 #define const /* avoid "const poisoning" */
9 #include <regexp.h>
10 #undef const
12 void regerror(char *message)
14 fprintf(stderr, "regexp error: %s\n", message);