From d5a9445a9ef9bb444b676d9d0b3e96d6e95bbcc4 Mon Sep 17 00:00:00 2001 From: Kartatz <105828205+Kartatz@users.noreply.github.com> Date: Thu, 3 Oct 2024 16:31:57 -0300 Subject: [PATCH] Initial commit --- src/dump.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dump.c b/src/dump.c index ea9d91a..835e8df 100644 --- a/src/dump.c +++ b/src/dump.c @@ -7,6 +7,10 @@ #include "errors.h" #include "biggestint.h" +#if defined(_WIN32) + #include "wio.h" +#endif + static const char JSON_TRUE[] = "true"; static const char JSON_FALSE[] = "false"; static const char JSON_NULL[] = "null";