home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 June
/
SIMTEL_0692.cdr
/
msdos
/
c
/
csubrtns.arc
/
ERRS.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
Text File
|
1987-05-17
|
256 b
|
12 lines
/* err.c by Michael Hanson */
/* you may use this, but not for profit, and give me credit */
/* error printer for c */
error(str,erc)
char *str;
int erc;
{
fputs(str,STDERR);
fputs("\n",STDERR);
exit(erc);
}