summaryrefslogtreecommitdiff
path: root/.config/dwm/util.h
diff options
context:
space:
mode:
authorbd <bdunahu@operationnull.com>2025-11-01 20:33:41 -0400
committerbd <bdunahu@operationnull.com>2025-11-01 20:33:41 -0400
commit6eb3a770c032bd263194d14fa1b7e9b77dd04ef6 (patch)
treee581218e7a27dd8ac4c70bc52640e65d34ef76bf /.config/dwm/util.h
parent85b6a80784da2700ff959a3042703ee026bc3870 (diff)
remove dwm
Diffstat (limited to '.config/dwm/util.h')
-rw-r--r--.config/dwm/util.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/.config/dwm/util.h b/.config/dwm/util.h
deleted file mode 100644
index f633b51..0000000
--- a/.config/dwm/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);