summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2001-10-15 20:51:38 (GMT)
committerSkip Montanaro <skip@pobox.com>2001-10-15 20:51:38 (GMT)
commitf118cb1d6fe74dc8f4b280ecd751f20777ce4fa9 (patch)
tree4916376f3de36005490b381944fe52ceae264bfb /Python
parentf35f06963b71d4f1083360a56b3781cb69ce4a37 (diff)
downloadcpython-f118cb1d6fe74dc8f4b280ecd751f20777ce4fa9.zip
cpython-f118cb1d6fe74dc8f4b280ecd751f20777ce4fa9.tar.gz
cpython-f118cb1d6fe74dc8f4b280ecd751f20777ce4fa9.tar.bz2
make getarray static - it's only called from ceval.c and is not an
extern-able name.
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 49b1faf..ef99594 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3644,7 +3644,7 @@ format_exc_check_arg(PyObject *exc, char *format_str, PyObject *obj)
#ifdef DYNAMIC_EXECUTION_PROFILE
-PyObject *
+static PyObject *
getarray(long a[256])
{
int i;