all repos — dwm @ 18248ebf4b9465b837e717dcd14a5202a98248e0

fork of suckless dynamic window manager

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