summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2001-01-24 04:17:26 (GMT)
committerBarry Warsaw <barry@python.org>2001-01-24 04:17:26 (GMT)
commit430d773f555d43c5bff73180b8b3746b480a0a8a (patch)
tree1db7c27be9641405480eb1c21f086ab737d9aa4d /Include
parent10418eb80f620ab82f5536f34050a73af7179e04 (diff)
downloadcpython-430d773f555d43c5bff73180b8b3746b480a0a8a.zip
cpython-430d773f555d43c5bff73180b8b3746b480a0a8a.tar.gz
cpython-430d773f555d43c5bff73180b8b3746b480a0a8a.tar.bz2
PyGC_Dump() -> _PyGC_Dump()
Diffstat (limited to 'Include')
-rw-r--r--Include/objimpl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/objimpl.h b/Include/objimpl.h
index 2410d45..4909517 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 */