summaryrefslogtreecommitdiff
path: root/wm/dwm-6.4/util.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2023-03-27 20:57:44 -0500
committerstkhan <personal@slickd.xyz>2023-03-27 20:57:44 -0500
commite58dcfbcd127e00bec22141387037bc58ce8bec8 (patch)
tree4adc1f6694654b9fe83fa49c18b38dcef9f02e7d /wm/dwm-6.4/util.h
parenta327f64412c10b04832fa5ba7c34cf494e291c19 (diff)
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);