Fix a compiler warning in pycore_pylifecycle.h (GH-22331)

This commit is contained in:
Pablo Galindo 2020-09-21 11:57:22 +01:00 committed by Łukasz Langa
parent df71b65a88
commit d6360891b3
No known key found for this signature in database
GPG key ID: B26995E310250568

View file

@ -82,7 +82,7 @@ extern void _PyFaulthandler_Fini(void);
extern void _PyHash_Fini(void);
extern void _PyTraceMalloc_Fini(void);
extern void _PyWarnings_Fini(PyInterpreterState *interp);
extern void _PyAST_Fini();
extern void _PyAST_Fini(void);
extern PyStatus _PyGILState_Init(PyThreadState *tstate);
extern void _PyGILState_Fini(PyThreadState *tstate);