home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume1
/
8709
/
5
/
error.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1987-09-11
|
225 b
|
22 lines
/*
* error -- print error message and exit
*/
#include <stdio.h>
extern int errno;
void
error(s)
char *s;
{
if (errno != 0) {
perror(s);
}
else {
(void) fprintf(stderr, "%s\n", s);
}
exit(1);
}