summaryrefslogtreecommitdiff
path: root/wm/dwm-6.3/util.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2023-03-11 16:39:07 -0600
committerstkhan <personal@slickd.xyz>2023-03-11 16:39:07 -0600
commit2083a177d2e3b069b0343bcbc3027fd4c5cf7dba (patch)
tree25dc50a4d0e997c372df7e0eb529e69be1011872 /wm/dwm-6.3/util.h
parente73a4b48c2d9bfe6faf6bca3772f948b1c8b4a24 (diff)
update to dwm 6.4
Diffstat (limited to 'wm/dwm-6.3/util.h')
-rw-r--r--wm/dwm-6.3/util.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/wm/dwm-6.3/util.h b/wm/dwm-6.3/util.h
deleted file mode 100644
index f633b51..0000000
--- a/wm/dwm-6.3/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);