aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-05-22 22:33:56 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-06-26 13:52:36 +0200
commit7af4d439bdb5a2e40aca69446a3367bd71431c45 (patch)
treed5608cf1398098a1b8ab5aa5d8887d5fec5b6af7 /util.h
parentcd2d7549b3ae5ec234b45d85608f79f4d3aaa851 (diff)
downloaddwm-7af4d439bdb5a2e40aca69446a3367bd71431c45.tar.gz
import new drw from libsl and minor fixes.
- better scaling for occupied tag squares. - draw statusline first to omitt some complicated calculations.
Diffstat (limited to 'util.h')
-rw-r--r--util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.h b/util.h
index cded043..f633b51 100644
--- a/util.h
+++ b/util.h
@@ -4,5 +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 *ecalloc(size_t, size_t);
+void die(const char *fmt, ...);
+void *ecalloc(size_t nmemb, size_t size);
remember that computers suck.