home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
Add-Ons
/
MPW
/
MPW cawf 4.0.9
/
regerror.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-12-01
|
299 b
|
19 lines
|
[
TEXT/KAHL
]
#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 */
}