home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
unix
/
regexp.sit
/
regerror.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-04-09
|
232b
|
18 lines
#include "stdio.h"
#include "regexp.h"
#include "regproto.h"
#include "stdlib.h"
void
regerror(s)
char *s;
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
}