X-Git-Url: https://git.xinqibao.xyz/dwm.git/blobdiff_plain/646b351cc79845f4cc77415dfff474b9ae0053d9..8657affa2a61e85ca8df76b62e43cb02897d1d80:/util.h 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);