From d42c4282b91375a108811aa92e9fe71f62c113b9 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 10 Oct 2014 00:09:47 +0200 Subject: [PATCH] Closes #22579: Fix posixmodule.c to support any C compiler on Windows --- Modules/posixmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index c8d13d11a39c..2489ccb1e4cd 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -17479,7 +17479,7 @@ all_ins(PyObject *m) } -#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__) +#ifdef MS_WINDOWS #define INITFUNC PyInit_nt #define MODNAME "nt" -- 2.47.3