diff options
author | Guido van Rossum <guido@python.org> | 1993-11-01 16:28:59 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-01 16:28:59 (GMT) |
commit | b73cc04e625511f41c63b880b418338af70dc8bd (patch) | |
tree | 63cf9aafbb16fd57f988e88f217c27660dc66197 /Objects | |
parent | c7a22703e71f6074818e4661b0bbb57bbd726af7 (diff) | |
download | cpython-b73cc04e625511f41c63b880b418338af70dc8bd.zip cpython-b73cc04e625511f41c63b880b418338af70dc8bd.tar.gz cpython-b73cc04e625511f41c63b880b418338af70dc8bd.tar.bz2 |
* 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')
-rw-r--r-- | Objects/longobject.c | 1 | ||||
-rw-r--r-- | Objects/methodobject.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index 8c0b6c1..3e12639 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -39,6 +39,7 @@ static longobject *long_normalize PROTO((longobject *)); static longobject *mul1 PROTO((longobject *, wdigit)); static longobject *muladd1 PROTO((longobject *, wdigit, wdigit)); static longobject *divrem1 PROTO((longobject *, wdigit, digit *)); +static object *long_format PROTO((object *aa, int base)); static int ticker; /* XXX Could be shared with ceval? */ diff --git a/Objects/methodobject.c b/Objects/methodobject.c index 102e577..0a56161 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) |