From: Guido van Rossum Date: Mon, 12 Aug 1996 21:32:12 +0000 (+0000) Subject: Define reference count admin debug functions to return void. X-Git-Tag: v1.4b3~155 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aacdc9da75e31a48a90a8354f5ea29af4267a178;p=thirdparty%2FPython%2Fcpython.git Define reference count admin debug functions to return void. --- diff --git a/Objects/object.c b/Objects/object.c index 9d8a16bc89e0..9c99ea2d19ed 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -517,6 +517,7 @@ object NoObject = { static object refchain = {&refchain, &refchain}; +void NEWREF(op) object *op; { @@ -531,6 +532,7 @@ NEWREF(op) #endif } +void UNREF(op) register object *op; { @@ -556,6 +558,7 @@ UNREF(op) #endif } +void DELREF(op) object *op; { @@ -565,6 +568,7 @@ DELREF(op) (*dealloc)(op); } +void _Py_PrintReferences(fp) FILE *fp; {