From 3b4729f3dbdb307df6a39ce1bf005eb02a0a363d Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Fri, 24 Mar 2023 13:04:58 +0100 Subject: [PATCH] another windows fix --- src/runtime/python/pypgf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/runtime/python/pypgf.c b/src/runtime/python/pypgf.c index e2e880584..357ead6c6 100644 --- a/src/runtime/python/pypgf.c +++ b/src/runtime/python/pypgf.c @@ -6,7 +6,9 @@ #include "./expr.h" #include "./ffi.h" #include "./transactions.h" +#ifndef _WIN32 #include +#endif static ConcrObject* Concr_new(PyTypeObject *type, PyObject *args, PyObject *kwds)