summaryrefslogtreecommitdiff
path: root/tree/src/dwm/dwm-6.6/util.h
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2026-03-01 11:37:31 -0800
committerThomas Ulmer <thomasmulmer02@gmail.com>2026-03-01 11:37:31 -0800
commite01b84a6698f5060fd7dea789fc0ffa872f26b15 (patch)
treeda1d4369048833f0496ae51d400d118f30c499bd /tree/src/dwm/dwm-6.6/util.h
parent6d8430971dada74478a0cd2c9eca2272a105b744 (diff)
remove tree
Diffstat (limited to 'tree/src/dwm/dwm-6.6/util.h')
-rw-r--r--tree/src/dwm/dwm-6.6/util.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/tree/src/dwm/dwm-6.6/util.h b/tree/src/dwm/dwm-6.6/util.h
deleted file mode 100644
index c0a50d4..0000000
--- a/tree/src/dwm/dwm-6.6/util.h
+++ /dev/null
@@ -1,9 +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))
-#define LENGTH(X) (sizeof (X) / sizeof (X)[0])
-
-void die(const char *fmt, ...);
-void *ecalloc(size_t nmemb, size_t size);