minix/lib/nbsd_libcompat_minix/v8regerror.c
Gianluca Guida 6bcf58bab8 Add libcompat_minix for NBSD libc
libcompat_minix is a compatibility layer meant to let existing commands to work
with the new libc.
2011-03-18 16:08:26 +00:00

16 lines
380 B
C

/* regerror() - Default regexp error report Author: Kees J. Bot
* 12 Jun 1999
*
* A better version of this routine should be supplied by the user in
* the program using regexps.
*/
#include <stdio.h>
#define const /* avoid "const poisoning" */
#include <compat/regexp.h>
#undef const
void regerror(char *message)
{
fprintf(stderr, "regexp error: %s\n", message);
}