From 169bd812c9183865b2399a8eaeab6aad238856c5 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Mon, 18 Sep 2023 23:51:15 -0500 Subject: [PATCH] Update state.h to #include Should fix usage with msvc in some pipelines. --- src/core/state.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/state.c b/src/core/state.c index 4c976dad..e2423936 100644 --- a/src/core/state.c +++ b/src/core/state.c @@ -27,6 +27,10 @@ #include "util.h" #endif +#ifdef JANET_WINDOWS +#include +#endif + JANET_THREAD_LOCAL JanetVM janet_vm; JanetVM *janet_local_vm(void) {