diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 +0000 |
commit | cd938fc5a1ba4a61959460787eb549ff989ca6b0 (patch) | |
tree | bdacb1f3ba568d3095e414dc4d02732a02c7c9c3 /Modules/arraymodule.c | |
parent | 78c0535a224697e1c7a1a4e68462d3d204e38942 (diff) | |
download | cpython-git-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.gz |
Made some more things static, and other cleanup for new naming scheme
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r-- | Modules/arraymodule.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c index 735c615016..68070ae826 100644 --- a/Modules/arraymodule.c +++ b/Modules/arraymodule.c @@ -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) |