From 51da5915b03d9b06936ac32f47287beb73d96973 Mon Sep 17 00:00:00 2001 From: zavok Date: Mon, 23 Nov 2015 17:08:20 +0300 Subject: This is a "barely works" version of spine, I hope it works, at least barely. --- util.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 util.c (limited to 'util.c') diff --git a/util.c b/util.c new file mode 100644 index 0000000..51acd1a --- /dev/null +++ b/util.c @@ -0,0 +1,17 @@ +/* See LICENSE file for copyright and license details. */ +#include +#include +#include + +#include "util.h" + +void +die(const char *errstr, ...) { + va_list ap; + + va_start(ap, errstr); + vfprintf(stderr, errstr, ap); + va_end(ap); + exit(EXIT_FAILURE); +} + -- cgit v1.2.3