aboutsummaryrefslogtreecommitdiff
path: root/dwm/Repositories/dmenu/util.h
diff options
context:
space:
mode:
authorbard <[email protected]>2024-05-31 16:01:49 -0400
committerbard <[email protected]>2024-05-31 16:01:49 -0400
commit8aa290ce1d935d1206c875f7c2483180cbc42763 (patch)
tree0380849e89ba3237ab05583de96d0950deae880d /dwm/Repositories/dmenu/util.h
parent8f0231d5f45adf980717ea1453a92d05f7093c74 (diff)
move to another repo
Diffstat (limited to 'dwm/Repositories/dmenu/util.h')
-rw-r--r--dwm/Repositories/dmenu/util.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/dwm/Repositories/dmenu/util.h b/dwm/Repositories/dmenu/util.h
deleted file mode 100644
index c0a50d4..0000000
--- a/dwm/Repositories/dmenu/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);