From 765264f4b61b8dca4c4c14cb2eb67ccb16d3be66 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Mon, 10 Feb 2025 23:05:41 +0000 Subject: [PATCH] Codefix: Add missing include for io.h in win32.cpp --- src/os/windows/win32.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/os/windows/win32.cpp b/src/os/windows/win32.cpp index 9978497257..de1697107d 100644 --- a/src/os/windows/win32.cpp +++ b/src/os/windows/win32.cpp @@ -20,6 +20,7 @@ #include /* SHGetFolderPath */ #include #include +#include #include "win32.h" #include "../../fios.h" #include "../../core/alloc_func.hpp"