diff options
Diffstat (limited to 'Include/moduleobject.h')
-rw-r--r-- | Include/moduleobject.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/moduleobject.h b/Include/moduleobject.h index 49b116c..0f40683 100644 --- a/Include/moduleobject.h +++ b/Include/moduleobject.h @@ -72,7 +72,7 @@ typedef struct PyModuleDef_Slot{ #endif /* New in 3.5 */ -typedef struct PyModuleDef{ +struct PyModuleDef { PyModuleDef_Base m_base; const char* m_name; const char* m_doc; @@ -82,7 +82,7 @@ typedef struct PyModuleDef{ traverseproc m_traverse; inquiry m_clear; freefunc m_free; -} PyModuleDef; +}; // Internal C API |