home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
vol_300
/
329_01
/
regerror.c
< prev
next >
Wrap
C/C++ Source or Header
|
1988-12-09
|
265b
|
20 lines
/*
** name: regerror.c
** purpose: Look at the code
*/
#include <stdio.h>
#include "regexp.h"
void
regerror(s)
char *s;
{
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
}