Closes #22579: Fix posixmodule.c to support any C compiler on Windows

This commit is contained in:
Victor Stinner 2014-10-10 00:09:47 +02:00
parent 532783bd5e
commit d42c4282b9

View file

@ -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"