home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.orig.lzh
/
libc
/
error.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-06-27
|
177b
|
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);
}