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 49b1faf..ef99594 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -3644,7 +3644,7 @@
 
 #ifdef DYNAMIC_EXECUTION_PROFILE
 
-PyObject *
+static PyObject *
 getarray(long a[256])
 {
 	int i;