util.c (view raw)
1/* See LICENSE file for copyright and license details. */
2#include <stdarg.h>
3#include <stdio.h>
4#include <stdlib.h>
5
6#include "util.h"
7
8void
9die(const char *errstr, ...) {
10 va_list ap;
11
12 va_start(ap, errstr);
13 vfprintf(stderr, errstr, ap);
14 va_end(ap);
15 exit(EXIT_FAILURE);
16}
17