aboutsummaryrefslogtreecommitdiff
path: root/.repos/dwmold/util.c
diff options
context:
space:
mode:
authorMarvin Borner2020-06-11 18:20:45 +0200
committerMarvin Borner2020-06-11 18:20:45 +0200
commit7f023fcd382dc39f9589d1d9887d25a1b3b787dd (patch)
tree44c9a6703afa3ef5e07ec0bcf2606a84f6cfe3f7 /.repos/dwmold/util.c
parentffbd8401bc7b0c62d9b928df38d05a2d42fc5927 (diff)
I REALLY need to stop this! :D
Diffstat (limited to '.repos/dwmold/util.c')
-rw-r--r--.repos/dwmold/util.c35
1 files changed, 35 insertions, 0 deletions
diff --git a/.repos/dwmold/util.c b/.repos/dwmold/util.c
new file mode 100644
index 0000000..fe044fc
--- /dev/null
+++ b/.repos/dwmold/util.c
@@ -0,0 +1,35 @@
+/* See LICENSE file for copyright and license details. */
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "util.h"
+
+void *
+ecalloc(size_t nmemb, size_t size)
+{
+ void *p;
+
+ if (!(p = calloc(nmemb, size)))
+ die("calloc:");
+ return p;
+}
+
+void
+die(const char *fmt, ...) {
+ va_list ap;
+
+ va_start(ap, fmt);
+ vfprintf(stderr, fmt, ap);
+ va_end(ap);
+
+ if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
+ fputc(' ', stderr);
+ perror(NULL);
+ } else {
+ fputc('\n', stderr);
+ }
+
+ exit(1);
+}