From: Barry Warsaw Date: Wed, 24 Jan 2001 04:17:26 +0000 (+0000) Subject: PyGC_Dump() -> _PyGC_Dump() X-Git-Tag: v2.1a2~240 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=430d773f555d43c5bff73180b8b3746b480a0a8a;p=thirdparty%2FPython%2Fcpython.git PyGC_Dump() -> _PyGC_Dump() --- diff --git a/Include/objimpl.h b/Include/objimpl.h index 2410d4540035..490951779397 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -262,7 +262,7 @@ typedef struct _gc_head { /* Get the object given the PyGC_Head */ #define PyObject_FROM_GC(g) ((PyObject *)(((PyGC_Head *)g)+1)) -extern DL_IMPORT(void) PyGC_Dump(PyGC_Head *); +extern DL_IMPORT(void) _PyGC_Dump(PyGC_Head *); #endif /* WITH_CYCLE_GC */