summaryrefslogtreecommitdiff
path: root/Objects/methodobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1993-11-01 16:28:59 +0000
committerGuido van Rossum <guido@python.org>1993-11-01 16:28:59 +0000
commitb73cc04e625511f41c63b880b418338af70dc8bd (patch)
tree63cf9aafbb16fd57f988e88f217c27660dc66197 /Objects/methodobject.c
parentc7a22703e71f6074818e4661b0bbb57bbd726af7 (diff)
downloadcpython-git-b73cc04e625511f41c63b880b418338af70dc8bd.tar.gz
* ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c,
pythonrun.c: added static forward declarations * pythonrun.h, ceval.h, longobject.h, node.h: removed declarations of static routines
Diffstat (limited to 'Objects/methodobject.c')
-rw-r--r--Objects/methodobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/methodobject.c b/Objects/methodobject.c
index 102e5772ac..0a56161d1b 100644
--- a/Objects/methodobject.c
+++ b/Objects/methodobject.c
@@ -161,7 +161,7 @@ typeobject Methodtype = {
meth_hash, /*tp_hash*/
};
-object *listmethods PROTO((struct methodlist *)); /* Forward */
+static object *listmethods PROTO((struct methodlist *)); /* Forward */
static object *
listmethods(ml)