diff options
author | Guido van Rossum <guido@python.org> | 1993-11-01 16:28:59 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-11-01 16:28:59 +0000 |
commit | 29294d31c82585a23a71afc8ac043f513908095a (patch) | |
tree | a8afb07788a011cac2dae9c9925a95e218b6af97 /Python/pythonrun.c | |
parent | 63556d9da20d676193d534aafeab3be6bffe09fd (diff) | |
download | cpython-29294d31c82585a23a71afc8ac043f513908095a.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 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 9 |
1 files changed, 8 insertions, 1 deletions
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 */ |