From f118cb1d6fe74dc8f4b280ecd751f20777ce4fa9 Mon Sep 17 00:00:00 2001 From: Skip Montanaro Date: Mon, 15 Oct 2001 20:51:38 +0000 Subject: make getarray static - it's only called from ceval.c and is not an extern-able name. --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v0.12