18 lines
201 B
C
18 lines
201 B
C
|
#include <stdarg.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
#include "test.h"
|
||
|
|
||
|
void die(const char *fmt, ...)
|
||
|
{
|
||
|
va_list va;
|
||
|
|
||
|
va_start(va, fmt);
|
||
|
vfprintf(stderr, fmt, va);
|
||
|
va_end(va);
|
||
|
|
||
|
exit(1);
|
||
|
}
|
||
|
|