diff options
Diffstat (limited to 'Include/modsupport.h')
-rw-r--r-- | Include/modsupport.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h index baf47f0..6cc2ad0 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -232,11 +232,9 @@ PyAPI_FUNC(int) PyModule_ExecDef(PyObject *module, PyModuleDef *def); #define PyModule_FromDefAndSpec2 PyModule_FromDefAndSpec2TraceRefs #endif -PyAPI_FUNC(PyObject *) PyModule_Create2(struct PyModuleDef*, - int apiver); +PyAPI_FUNC(PyObject *) PyModule_Create2(PyModuleDef*, int apiver); #ifndef Py_LIMITED_API -PyAPI_FUNC(PyObject *) _PyModule_CreateInitialized(struct PyModuleDef*, - int apiver); +PyAPI_FUNC(PyObject *) _PyModule_CreateInitialized(PyModuleDef*, int apiver); #endif #ifdef Py_LIMITED_API |