summaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/util.h b/util.h
index 4c51c76..156397a 100644
--- a/util.h
+++ b/util.h
@@ -2,8 +2,10 @@
#define XLNCH_UTIL_H
#include <stdarg.h>
-
-#define MAX(A, B) ((A) > (B) ? (A) : (B))
+#include <ctype.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
void die(const char *fmt, ...) {
va_list ap;