From befb7e87520a979099c47680695fbd6ab984674b Mon Sep 17 00:00:00 2001 From: Zephyr Pellerin Date: Wed, 13 Feb 2019 12:03:45 -0800 Subject: [PATCH] Don't include GNUC headers if _MSC_VER is defined diff --git c/src/python/core.c i/src/python/core.c index 5879413..4b1ab89 100644 --- c/src/python/core.c +++ i/src/python/core.c @@ -1,4 +1,10 @@ #include +#ifndef _MSC_VER +#include +#include +#include +#include +#endif #include "../libethash/ethash.h" #include "../libethash/internal.h" --- src/python/core.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/python/core.c b/src/python/core.c index 5879413c..4b1ab89f 100644 --- a/src/python/core.c +++ b/src/python/core.c @@ -1,4 +1,10 @@ #include +#ifndef _MSC_VER +#include +#include +#include +#include +#endif #include "../libethash/ethash.h" #include "../libethash/internal.h"