aboutsummaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authorc2023-11-25 22:03:59 -0500
committerc2023-11-25 22:03:59 -0500
commite216d5b8813ed4a1ac07ec8350c7021b7c44006f (patch)
treecea8fc0e4c6411fb7d7a5e4381ce11ac3104b562 /util.h
parent9f8855343c881bdc01b9fff5b956537ba1106b76 (diff)
Initial commit by me.
Diffstat (limited to 'util.h')
-rw-r--r--util.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/util.h b/util.h
index f633b51..531ab25 100644
--- a/util.h
+++ b/util.h
@@ -1,7 +1,11 @@
/* See LICENSE file for copyright and license details. */
+#ifndef MAX
#define MAX(A, B) ((A) > (B) ? (A) : (B))
+#endif
+#ifndef MIN
#define MIN(A, B) ((A) < (B) ? (A) : (B))
+#endif
#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
void die(const char *fmt, ...);