13 lines
245 B
C++
13 lines
245 B
C++
|
|
#include <errno.h>
|
||
|
|
#include <stdarg.h>
|
||
|
|
#include <stdio.h>
|
||
|
|
#include <stdlib.h>
|
||
|
|
#include <strings.h>
|
||
|
|
|
||
|
|
void error(const char* format, ...) {
|
||
|
|
va_list ap;
|
||
|
|
va_start(ap, format);
|
||
|
|
vfprintf(stderr, format, ap);
|
||
|
|
va_end(ap);
|
||
|
|
exit(-1);
|
||
|
|
}
|