diff options
author | Oleg Iarygin <oleg@arhadthedev.net> | 2022-07-13 11:22:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-13 11:22:45 (GMT) |
commit | fc21a43b1f0d4426690ccc52dc96e5aaef9f5ab5 (patch) | |
tree | fdc7fbbc310ad3c538c9bb491d01b0d01e7b0580 /Modules/_testcapi/parts.h | |
parent | cceac5dd06fdbaba3f45b8be159dfa79b74ff237 (diff) | |
download | cpython-fc21a43b1f0d4426690ccc52dc96e5aaef9f5ab5.zip cpython-fc21a43b1f0d4426690ccc52dc96e5aaef9f5ab5.tar.gz cpython-fc21a43b1f0d4426690ccc52dc96e5aaef9f5ab5.tar.bz2 |
gh-93649: Fix linkage of _PyTestCapi_Init_Vectorcall (#94702)
Diffstat (limited to 'Modules/_testcapi/parts.h')
-rw-r--r-- | Modules/_testcapi/parts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_testcapi/parts.h b/Modules/_testcapi/parts.h index 1111021..54cddf4 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); |