summaryrefslogtreecommitdiff
path: root/src/dwm/my-dwm/util.h
diff options
context:
space:
mode:
authorThomas Ulmer <thomas.ulmer@redflagai.co>2026-02-13 09:34:04 -0800
committerThomas Ulmer <thomas.ulmer@redflagai.co>2026-02-13 09:34:04 -0800
commit103f8562eac1bb38cbc1261a1ea7bb9b9d4d9ba7 (patch)
tree714964b8f711e5bbb6c9efbc7d5b79de7b9ad32f /src/dwm/my-dwm/util.h
parent8d2258410c02a190c69ac51179d6c8793443d678 (diff)
dwm redisable focus follows mouse
Diffstat (limited to 'src/dwm/my-dwm/util.h')
-rw-r--r--src/dwm/my-dwm/util.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/dwm/my-dwm/util.h b/src/dwm/my-dwm/util.h
deleted file mode 100644
index c0a50d4..0000000
--- a/src/dwm/my-dwm/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);