aboutsummaryrefslogtreecommitdiff
path: root/.repos/dwmold/util.h
diff options
context:
space:
mode:
authorMarvin Borner2020-06-12 19:46:15 +0200
committerMarvin Borner2020-06-12 19:46:15 +0200
commit88565e120f0564f2354925617a83f1496353bb8d (patch)
treee95f8ae9f0f15665262dd7ec71d2bf154af34d3e /.repos/dwmold/util.h
parent425098cd34c74beb38ccb3a13a78ec74f342bc22 (diff)
Clean-up
Diffstat (limited to '.repos/dwmold/util.h')
-rw-r--r--.repos/dwmold/util.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/.repos/dwmold/util.h b/.repos/dwmold/util.h
deleted file mode 100644
index f633b51..0000000
--- a/.repos/dwmold/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);