cleanup, dont use c++ style comments
[dwm.git] / util.c
blob51acd1aed516d3cdeff714c31b9cd8f455c6c50e
1 /* See LICENSE file for copyright and license details. */
2 #include <stdarg.h>
3 #include <stdio.h>
4 #include <stdlib.h>
6 #include "util.h"
8 void
9 die(const char *errstr, ...) {
10 va_list ap;
12 va_start(ap, errstr);
13 vfprintf(stderr, errstr, ap);
14 va_end(ap);
15 exit(EXIT_FAILURE);