From 0ae4e0c959bbc90ec18180ef3cc957759d346ced Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 3 Dec 2021 15:21:58 -0800 Subject: bpo-45582 Fix prototype of _Py_Get_Getpath_CodeObject. (GH-29907) Automerge-Triggered-By: GH:tiran --- Include/internal/pycore_initconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/internal/pycore_initconfig.h b/Include/internal/pycore_initconfig.h index be545f4..a2f4cd1 100644 --- a/Include/internal/pycore_initconfig.h +++ b/Include/internal/pycore_initconfig.h @@ -168,7 +168,7 @@ PyAPI_FUNC(int) _PyConfig_FromDict(PyConfig *config, PyObject *dict); extern void _Py_DumpPathConfig(PyThreadState *tstate); -PyAPI_FUNC(PyObject*) _Py_Get_Getpath_CodeObject(); +PyAPI_FUNC(PyObject*) _Py_Get_Getpath_CodeObject(void); /* --- Function used for testing ---------------------------------- */ -- cgit v0.12