Made some more things static, and other cleanup for new naming scheme

This commit is contained in:
Guido van Rossum 1995-01-17 16:13:48 +00:00
parent 78c0535a22
commit cd938fc5a1
5 changed files with 10 additions and 11 deletions

View file

@ -56,12 +56,12 @@ staticforward 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));
static object *newarrayobject PROTO((int, struct arraydescr *));
static int getarraysize PROTO((object *));
static object *getarrayitem PROTO((object *, int));
static int setarrayitem PROTO((object *, int, object *));
extern int insarrayitem PROTO((object *, int, object *));
extern int addarrayitem PROTO((object *, object *));
static int insarrayitem PROTO((object *, int, object *));
static int addarrayitem PROTO((object *, object *));
static object *
c_getitem(ap, i)