From 4121277b40a667665d4eea1726aefdc55d12d110 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Mon, 26 Oct 2020 09:42:20 +0200 Subject: [PATCH] Add a missing include of stdlib.h Since 7ab4c928ef4511ea5753a36a57c3506d9fd5086b, osdep.h contains calls to malloc/free. This fixes building with MSVC targeting WinRT. --- common/osdep.h | 1 + 1 file changed, 1 insertion(+) diff --git a/common/osdep.h b/common/osdep.h index 2e35832b..111039bc 100644 --- a/common/osdep.h +++ b/common/osdep.h @@ -34,6 +34,7 @@ #include #include #include +#include #include "config.h" -- GitLab