From 61906004be9b02356b84f97ade30c15082f29ca9 Mon Sep 17 00:00:00 2001 From: Meheret Tesfaye Date: Thu, 13 Aug 2020 22:13:44 +0300 Subject: [PATCH] Fix 'alloca.h' no such file error from windows-os. If it's windows-os 'alloca.h' file changed to 'malloc.h'. --- src/python/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/core.c b/src/python/core.c index c66e03c5..a12eb040 100644 --- a/src/python/core.c +++ b/src/python/core.c @@ -1,5 +1,5 @@ #include -#include +#if defined(_WIN32) || defined(WIN32) #include #else #include #endif #include #include #include