Make some private symbols static.
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 74e7012..64d166c 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -251,7 +251,7 @@
 
 /* Convert between "fast" version of locals and dictionary version */
 
-void
+static void
 map_to_dict(PyObject *map, int nmap, PyObject *dict, PyObject **values,
 	    int deref)
 {