6bcf58bab8
libcompat_minix is a compatibility layer meant to let existing commands to work with the new libc.
15 lines
380 B
C
15 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);
|
|
}
|