summaryrefslogtreecommitdiffstats
path: root/Modules/arraymodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-17 16:13:48 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-17 16:13:48 (GMT)
commitcd938fc5a1ba4a61959460787eb549ff989ca6b0 (patch)
treebdacb1f3ba568d3095e414dc4d02732a02c7c9c3 /Modules/arraymodule.c
parent78c0535a224697e1c7a1a4e68462d3d204e38942 (diff)
downloadcpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.zip
cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.gz
cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.bz2
Made some more things static, and other cleanup for new naming scheme
Diffstat (limited to 'Modules/arraymodule.c')
-rw-r--r--Modules/arraymodule.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/arraymodule.c b/Modules/arraymodule.c
index 735c615..68070ae 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)