diff options
author | Skip Montanaro <skip@pobox.com> | 2001-10-15 20:51:38 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2001-10-15 20:51:38 (GMT) |
commit | f118cb1d6fe74dc8f4b280ecd751f20777ce4fa9 (patch) | |
tree | 4916376f3de36005490b381944fe52ceae264bfb | |
parent | f35f06963b71d4f1083360a56b3781cb69ce4a37 (diff) | |
download | cpython-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.
-rw-r--r-- | Python/ceval.c | 2 |
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; |