Define reference count admin debug functions to return void.
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 @@
 
 static object refchain = {&refchain, &refchain};
 
+void
 NEWREF(op)
 	object *op;
 {
@@ -531,6 +532,7 @@
 #endif
 }
 
+void
 UNREF(op)
 	register object *op;
 {
@@ -556,6 +558,7 @@
 #endif
 }
 
+void
 DELREF(op)
 	object *op;
 {
@@ -565,6 +568,7 @@
 	(*dealloc)(op);
 }
 
+void
 _Py_PrintReferences(fp)
 	FILE *fp;
 {