- dictobject.c: Make dict_merge symbol a static symbol
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 164bc18..03c973b 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -2372,7 +2372,7 @@
     return Py_SAFE_DOWNCAST(i, Py_ssize_t, int);
 }
 
-int
+static int
 dict_merge(PyObject *a, PyObject *b, int override)
 {
     PyDictObject *mp, *other;