aboutsummaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'util.h')
-rw-r--r--util.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/util.h b/util.h
index d84846a..8b39c1e 100644
--- a/util.h
+++ b/util.h
@@ -1,8 +1,13 @@
#ifndef UTIL_H
#define UTIL_H
-#include <stdint.h>
+#ifndef VIS_INTERNAL
+ #define VIS_INTERNAL
+#endif
+
#include <stdbool.h>
+#include <stddef.h>
+#include <stdint.h>
#define LENGTH(x) ((int)(sizeof (x) / sizeof *(x)))
#define MIN(a, b) ((a) > (b) ? (b) : (a))