summaryrefslogtreecommitdiff
path: root/base.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-11-25 09:17:00 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-11-25 09:17:00 -0500
commit4e51199f1103d2d9daa563b63d0e8f22c36fbe8a (patch)
tree707b7cf557f1b9937a58c66f593847bd957e07b3 /base.h
parente3aa668ef358739148adb1a4965b629d07467575 (diff)
got windows build to work
Diffstat (limited to 'base.h')
-rw-r--r--base.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/base.h b/base.h
index e55ca09..3a8b4a9 100644
--- a/base.h
+++ b/base.h
@@ -5,10 +5,15 @@
#define NDEBUG 1
#endif
+#if _WIN32
+#include <windows.h>
+#endif
+
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stddef.h>
+#include <stdarg.h>
#include <assert.h>
typedef uint8_t u8;