diff options
Diffstat (limited to 'Include/funcobject.h')
-rw-r--r-- | Include/funcobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/funcobject.h b/Include/funcobject.h index d33cad7..f618363 100644 --- a/Include/funcobject.h +++ b/Include/funcobject.h @@ -40,7 +40,7 @@ typedef struct { PyObject *func_doc; } PyFunctionObject; -extern DL_IMPORT PyTypeObject PyFunction_Type; +extern DL_IMPORT(PyTypeObject) PyFunction_Type; #define PyFunction_Check(op) ((op)->ob_type == &PyFunction_Type) |