summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorMoritz Luedecke <ritze@skweez.net>2017-08-01 20:00:08 +0200
committerMoritz Luedecke <ritze@skweez.net>2017-08-01 20:00:08 +0200
commit410ef5960fde8a8d601264859032bb9032ead6f6 (patch)
tree1d3e0de900423d482dfa0aa619fbfb5e98ea58b2 /util.h
parentff4fd40baab131ee5eb24b3a25230c9c430ee785 (diff)
Revert some changes and add old code from dmenu
Diffstat (limited to 'util.h')
-rw-r--r--util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.h b/util.h
index f7ce721..f633b51 100644
--- a/util.h
+++ b/util.h
@@ -4,4 +4,5 @@
#define MIN(A, B) ((A) < (B) ? (A) : (B))
#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
-void die(const char *errstr, ...);
+void die(const char *fmt, ...);
+void *ecalloc(size_t nmemb, size_t size);