summaryrefslogtreecommitdiff
path: root/wm/dwm-6.4/util.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2023-03-31 19:31:05 -0500
committerstkhan <personal@slickd.xyz>2023-03-31 19:31:05 -0500
commitc0092ba1563cd27086f968db59de420299508947 (patch)
tree884a818b8fea3fd164df662693656e608f5dc458 /wm/dwm-6.4/util.h
parent2de05c39dca4f8a3ca3dd016cfc2076a8a2ba5a9 (diff)
init2
Diffstat (limited to 'wm/dwm-6.4/util.h')
-rw-r--r--wm/dwm-6.4/util.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/wm/dwm-6.4/util.h b/wm/dwm-6.4/util.h
deleted file mode 100644
index f633b51..0000000
--- a/wm/dwm-6.4/util.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-#define MAX(A, B) ((A) > (B) ? (A) : (B))
-#define MIN(A, B) ((A) < (B) ? (A) : (B))
-#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
-
-void die(const char *fmt, ...);
-void *ecalloc(size_t nmemb, size_t size);