aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/eprintf.h
blob: a9b342f21ebf063d9a3e383c125c86a951580d70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
/* See LICENSE file for copyright and license details. */
#include <stdlib.h>

void weprintf(const char *fmt, ...);

#define eprintf(...)\
	(weprintf(__VA_ARGS__), exit(1))

#define enprintf(status, ...)\
	(weprintf(__VA_ARGS__), exit(status))