mirror of https://github.com/python/cpython
Fix _PyTraceMalloc_Fini() definition (GH-16259)
The function return type is void, not int.
This commit is contained in:
parent
0a963fbc9c
commit
d299b8b47d
|
@ -84,7 +84,7 @@ extern void _PyUnicode_Fini(void);
|
|||
extern void _PyLong_Fini(void);
|
||||
extern void _PyFaulthandler_Fini(void);
|
||||
extern void _PyHash_Fini(void);
|
||||
extern int _PyTraceMalloc_Fini(void);
|
||||
extern void _PyTraceMalloc_Fini(void);
|
||||
extern void _PyWarnings_Fini(PyInterpreterState *interp);
|
||||
|
||||
extern void _PyGILState_Init(
|
||||
|
|
Loading…
Reference in New Issue