home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume20
/
xxalloc
/
xxerror.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
|
1989-10-16
|
107 b
|
12 lines
/* xxerror.c */
#include <stdio.h>
void xx_error(s)
char *s;
{
fprintf(stderr, s);
exit(2);
return;
}