summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-05-21 21:39:58 +0200
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-05-24 19:28:44 +0200
commit27a904c1dd40d185dd5123ca354f6080e853ec92 (patch)
tree2affa3c111ddc9f7b2034f64e83451b17e6f74b1 /util.h
parent268d1968ea951b3eb2d1411a9e0d7c0fcb23217b (diff)
downloadsent-27a904c1dd40d185dd5123ca354f6080e853ec92.tar.gz
sent-27a904c1dd40d185dd5123ca354f6080e853ec92.tar.bz2
sent-27a904c1dd40d185dd5123ca354f6080e853ec92.zip
import new drw and util from libsl.
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);
Software created with 💖