aboutsummaryrefslogtreecommitdiff
path: root/dwmo/util.h
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-10-16 09:58:36 -0400
committerBradley Taunt <bt@btxx.org>2024-10-16 09:58:36 -0400
commitb78932305a00a93042d390e3953507347d1fad01 (patch)
treed928b9ea0ebbfaf7beb5082793f95b005033bdab /dwmo/util.h
parent06aed0b8ba1a039f620258b2126906b838e01ae4 (diff)
Include laptop and desktop variations, set Firefox as default browser, include desktop screenshot
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);