X-Git-Url: https://git.xinqibao.xyz/dmenu.git/blobdiff_plain/4b1fecd44e8376594c418663351fcb30c4e841de..3c91eed0fb74657c3fa25bc4fd65cd0aa88464c0:/util.h 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);