mirror of
https://github.com/python/cpython.git
synced 2025-07-10 04:45:36 +00:00
* 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
This commit is contained in:
parent
c7a22703e7
commit
b73cc04e62
10 changed files with 14 additions and 10 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue