home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Fish 1
/
GoldFishApril1994_CD2.img
/
d4xx
/
d473
/
cnewssrc
/
cnews_src.lzh
/
libc
/
error.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-05-30
|
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);
}