]> git.lizzy.rs Git - bspwm.git/blob - utils.c
53e076afa722bb1decf5c3b3062af767bd211b93
[bspwm.git] / utils.c
1 #include <stdarg.h>
2 #include <stdio.h>
3 #include <stdlib.h>
4
5 void die(const char *errstr, ...) {
6     va_list ap;
7
8     va_start(ap, errstr);
9     vfprintf(stderr, errstr, ap);
10     va_end(ap);
11     exit(EXIT_FAILURE);
12 }