mirror of
https://github.com/python/cpython.git
synced 2025-08-26 11:45:20 +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
|
@ -66,10 +66,11 @@ extern typeobject Arraytype;
|
|||
|
||||
#define is_arrayobject(op) ((op)->ob_type == &Arraytype)
|
||||
|
||||
/* Forward */
|
||||
extern object *newarrayobject PROTO((int, struct arraydescr *));
|
||||
extern int getarraysize PROTO((object *));
|
||||
extern object *getarrayitem PROTO((object *, int));
|
||||
extern int setarrayitem PROTO((object *, int, object *));
|
||||
static int setarrayitem PROTO((object *, int, object *));
|
||||
extern int insarrayitem PROTO((object *, int, object *));
|
||||
extern int addarrayitem PROTO((object *, object *));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue