diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2016-05-22 22:33:56 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-06-26 13:52:36 +0200 |
commit | 7af4d439bdb5a2e40aca69446a3367bd71431c45 (patch) | |
tree | d5608cf1398098a1b8ab5aa5d8887d5fec5b6af7 /util.h | |
parent | cd2d7549b3ae5ec234b45d85608f79f4d3aaa851 (diff) |
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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |