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 /Python/ceval.c | |
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 'Python/ceval.c')
-rw-r--r-- | Python/ceval.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 329494e..324ecdf 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -94,6 +94,7 @@ static void locals_2_fast PROTO((frameobject *, int)); static void fast_2_locals PROTO((frameobject *)); static int access_statement PROTO((object *, object *, frameobject *)); static int exec_statement PROTO((object *, object *, object *)); +static void mergelocals PROTO(()); /* Pointer to current frame, used to link new frames to */ |