]> granicus.if.org Git - python/commitdiff
PyGC_Dump() -> _PyGC_Dump()
authorBarry Warsaw <barry@python.org>
Wed, 24 Jan 2001 04:17:26 +0000 (04:17 +0000)
committerBarry Warsaw <barry@python.org>
Wed, 24 Jan 2001 04:17:26 +0000 (04:17 +0000)
Include/objimpl.h

index 2410d454003579a47f350bbe1f02b1af800d8274..49095177939751d0d2a9a0cc07f732a9b8e44a4c 100644 (file)
@@ -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 */