diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 1 | ||||
-rw-r--r-- | Python/pythonrun.c | 9 |
2 files changed, 9 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 329494e7c4..324ecdf97f 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 */ diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 6661a19297..56254ac285 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -51,7 +51,14 @@ extern char *getpythonpath(); extern grammar gram; /* From graminit.c */ -void initsigs(); /* Forward */ +/* Forward */ +static object *run_err_node PROTO((int err, node *n, char *filename, + object *globals, object *locals)); +static object *run_node PROTO((node *n, char *filename, + object *globals, object *locals)); +static object *eval_node PROTO((node *n, char *filename, + object *globals, object *locals)); +void initsigs PROTO(()); int debugging; /* Needed by parser.c */ int verbose; /* Needed by import.c */ |