home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Professional
/
OS2PRO194.ISO
/
os2
/
editor
/
cawf
/
cawf407.lzh
/
SRC
/
REGERROR.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-12-28
|
299b
|
19 lines
#include <stdio.h>
#include "regexp.h"
#include "proto.h"
void
regerror(s)
char *s;
{
#ifndef DOSPORT
#ifdef ERRAVAIL
error("regexp: %s", s);
#else
fprintf(stderr, "regexp(3): %s", s);
exit(1);
#endif
/* NOTREACHED */
#endif /* ifdef'd out for less's sake when reporting error inside less */
}