From: Barry Warsaw Date: Tue, 23 Jan 2001 16:37:22 +0000 (+0000) Subject: Add prototype for PyGC_Dump() -- but only inside the #ifdef X-Git-Tag: v2.1a2~267 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=803eff2a830752639a8041b568ae56285f7f8b26;p=thirdparty%2FPython%2Fcpython.git Add prototype for PyGC_Dump() -- but only inside the #ifdef WITH_CYCLE_GC. --- diff --git a/Include/objimpl.h b/Include/objimpl.h index 2a365d9e0167..2410d4540035 100644 --- a/Include/objimpl.h +++ b/Include/objimpl.h @@ -262,6 +262,8 @@ 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 *); + #endif /* WITH_CYCLE_GC */ #ifdef __cplusplus