From: Skip Montanaro Date: Mon, 15 Oct 2001 20:51:38 +0000 (+0000) Subject: make getarray static - it's only called from ceval.c and is not an X-Git-Tag: v2.2.1c1~1276 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f118cb1d6fe74dc8f4b280ecd751f20777ce4fa9;p=python make getarray static - it's only called from ceval.c and is not an extern-able name. --- diff --git a/Python/ceval.c b/Python/ceval.c index 49b1fafd77..ef995948fb 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;