home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 4
/
DATAFILE_PDCD4.iso
/
unix
/
unixtools
/
util
/
c
/
fatal
< prev
next >
Wrap
Text File
|
1992-07-21
|
303b
|
16 lines
/* > C.Fatal - general error handler */
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include "utils.h"
void fatal (int rc, const char *format, ...)
{
va_list ap;
va_start(ap,format);
vfprintf(stderr,format,ap);
va_end(ap);
exit(rc);
}