all repos — dwm @ cdec9782a1789bd5c3a84772fd59abb9da288597

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