aboutsummaryrefslogtreecommitdiff
path: root/dwmo/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'dwmo/util.h')
-rwxr-xr-xdwmo/util.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/dwmo/util.h b/dwmo/util.h
deleted file mode 100755
index f633b51..0000000
--- a/dwmo/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);