From c90321712e77177d2e6234ed5b11986c28370840 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Metehan=20=C3=96zt=C3=BCrk?= Date: Sun, 21 Dec 2025 02:20:28 +0300 Subject: [PATCH] bugfix/mingw-timeapi --- portable/MSVC-MingW/port.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/portable/MSVC-MingW/port.c b/portable/MSVC-MingW/port.c index 540c4a4bc5..ca3d24ab65 100644 --- a/portable/MSVC-MingW/port.c +++ b/portable/MSVC-MingW/port.c @@ -39,7 +39,11 @@ #include #endif -#include +#ifdef _MSC_VER + #include +#else + #include +#endif #ifdef __GNUC__ #include "mmsystem.h"