summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-08-12 21:32:12 (GMT)
committerGuido van Rossum <guido@python.org>1996-08-12 21:32:12 (GMT)
commitaacdc9da75e31a48a90a8354f5ea29af4267a178 (patch)
tree74e744b98b5952d0dfda9874cf2960c63824caf3 /Objects/object.c
parentd86b38003d881ac7955c2ab3ce0ed9bea4a541fc (diff)
downloadcpython-aacdc9da75e31a48a90a8354f5ea29af4267a178.zip
cpython-aacdc9da75e31a48a90a8354f5ea29af4267a178.tar.gz
cpython-aacdc9da75e31a48a90a8354f5ea29af4267a178.tar.bz2
Define reference count admin debug functions to return void.
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c
index 9d8a16b..9c99ea2 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;
{