aboutsummaryrefslogtreecommitdiffstats
path: root/dwm-6.3/util.h
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-08-09 18:43:08 +0200
committerJoe <bousset.rudy@gmail.com>2022-08-09 18:43:08 +0200
commit9a4252595230e006b75fbb4fc63170a79e06fc36 (patch)
tree579578b9620c406945cec10b2b695d03aa53b0c9 /dwm-6.3/util.h
parentperfect (diff)
downloaddwm-9a4252595230e006b75fbb4fc63170a79e06fc36.tar.gz
dwm-9a4252595230e006b75fbb4fc63170a79e06fc36.tar.bz2
dwm-9a4252595230e006b75fbb4fc63170a79e06fc36.tar.xz
dwm-9a4252595230e006b75fbb4fc63170a79e06fc36.tar.zst
dwm-9a4252595230e006b75fbb4fc63170a79e06fc36.zip
Updated to 6.3
Diffstat (limited to 'dwm-6.3/util.h')
-rw-r--r--dwm-6.3/util.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/dwm-6.3/util.h b/dwm-6.3/util.h
deleted file mode 100644
index f633b51..0000000
--- a/dwm-6.3/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);