home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fatted Calf
/
The Fatted Calf.iso
/
Unix
/
CNews
/
Source
/
libc
/
error.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
|
1988-12-29
|
177 b
|
17 lines
/*
* error - print best error message possible and exit
*/
#include <stdio.h>
extern void warning();
void
error(s1, s2)
char *s1;
char *s2;
{
warning(s1, s2);
exit(1);
}