From fc21a43b1f0d4426690ccc52dc96e5aaef9f5ab5 Mon Sep 17 00:00:00 2001 From: Oleg Iarygin Date: Wed, 13 Jul 2022 14:22:45 +0300 Subject: [PATCH] gh-93649: Fix linkage of _PyTestCapi_Init_Vectorcall (#94702) --- Modules/_testcapi/parts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_testcapi/parts.h b/Modules/_testcapi/parts.h index 1111021e1852b3..54cddf4b0929f2 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);