summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGreg Stein <gstein@lyra.org>2000-07-08 00:46:19 (GMT)
committerGreg Stein <gstein@lyra.org>2000-07-08 00:46:19 (GMT)
commita90b23c5712ea1a73fcfdac00e9ebbac2956a632 (patch)
treefaabd32a99be3a18545a5d0f979c40e40711d1bf /Include
parent9ace6bc7efcca54f85cd638adef7b76468253505 (diff)
downloadcpython-a90b23c5712ea1a73fcfdac00e9ebbac2956a632.zip
cpython-a90b23c5712ea1a73fcfdac00e9ebbac2956a632.tar.gz
cpython-a90b23c5712ea1a73fcfdac00e9ebbac2956a632.tar.bz2
One of the new prototypes was missing the "void" args.
Diffstat (limited to 'Include')
-rw-r--r--Include/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/object.h b/Include/object.h
index d63ace1..0578eec 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -556,7 +556,7 @@ times.
} \
extern DL_IMPORT(void) _PyTrash_deposit_object(PyObject*);
-extern DL_IMPORT(void) _PyTrash_destroy_chain();
+extern DL_IMPORT(void) _PyTrash_destroy_chain(void);
extern DL_IMPORT(int) _PyTrash_delete_nesting;
extern DL_IMPORT(PyObject *) _PyTrash_delete_later;