Define reference count admin debug functions to return void.

This commit is contained in:
Guido van Rossum 1996-08-12 21:32:12 +00:00
parent d86b38003d
commit aacdc9da75
1 changed files with 4 additions and 0 deletions

View File

@ -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;
{