diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-11-25 09:17:00 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-11-25 09:17:00 -0500 |
commit | 4e51199f1103d2d9daa563b63d0e8f22c36fbe8a (patch) | |
tree | 707b7cf557f1b9937a58c66f593847bd957e07b3 /base.h | |
parent | e3aa668ef358739148adb1a4965b629d07467575 (diff) |
got windows build to work
Diffstat (limited to 'base.h')
-rw-r--r-- | base.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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; |