From 87a9b6ac06367622c10fde69c1fbbc6a67dbe5c7 Mon Sep 17 00:00:00 2001 From: Antonio Vazquez Date: Sat, 14 Apr 2018 16:24:06 +0200 Subject: [PATCH] Fix compiler error in Windows --- intern/clog/clog.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/intern/clog/clog.c b/intern/clog/clog.c index b26105be351..812915e6f95 100644 --- a/intern/clog/clog.c +++ b/intern/clog/clog.c @@ -33,6 +33,9 @@ # include #endif +#if defined(_MSC_VER) +# include +#endif /* Only other dependency (could use regular malloc too). */ #include "MEM_guardedalloc.h"