From: Oleg Iarygin Date: Wed, 13 Jul 2022 11:22:45 +0000 (+0300) Subject: gh-93649: Fix linkage of _PyTestCapi_Init_Vectorcall (#94702) X-Git-Tag: v3.12.0a1~969 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc21a43b1f0d4426690ccc52dc96e5aaef9f5ab5;p=thirdparty%2FPython%2Fcpython.git gh-93649: Fix linkage of _PyTestCapi_Init_Vectorcall (#94702) --- diff --git a/Modules/_testcapi/parts.h b/Modules/_testcapi/parts.h index 1111021e1852..54cddf4b0929 100644 --- a/Modules/_testcapi/parts.h +++ b/Modules/_testcapi/parts.h @@ -1,3 +1,3 @@ #include "Python.h" -PyAPI_FUNC(int) _PyTestCapi_Init_Vectorcall(PyObject *module); +int _PyTestCapi_Init_Vectorcall(PyObject *module);