Xinqi Bao's Git

config.mk: add $FREETYPELIBS and $FREETYPEINC, simpler to override (ports and *BSDs)
[dwm.git] / util.c
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
8 void
9 die(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