summaryrefslogtreecommitdiff
path: root/wm/dwm-6.4/util.h
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2022-11-20 14:49:50 -0600
committerstkhan <personal@slickd.xyz>2022-11-20 14:49:50 -0600
commit692622e6ef93f852ac6420cd0e818752ee563fa6 (patch)
treebab2c8802b1d89d93727e858d63669c05c02ec4c /wm/dwm-6.4/util.h
parent6c98377a89f081c3300d69300b950a1cc977d23e (diff)
Remove new dwm
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);