From 6e3ad6f33d947aec421b20f4225b2b234ab24f0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Bernon?= Date: Thu, 19 Aug 2021 17:43:02 +0200 Subject: [PATCH] Include malloc.h for alloca on Win32 platform. MinGW somehow seems to get it from somewhere else but that's not right and Wine headers (or MSVC) don't. --- src/FAudio_internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/FAudio_internal.h b/src/FAudio_internal.h index c62385d69..d72cb37ab 100644 --- a/src/FAudio_internal.h +++ b/src/FAudio_internal.h @@ -32,6 +32,7 @@ #include #include #include +#include #include #include #include