Make set_main_loader static (noticed by Antoine Pitrou)
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 8130cc5..33ac741 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -1351,7 +1351,7 @@
 }
 
 int
-set_main_loader(PyObject *d, const char *filename, const char *loader_name)
+static set_main_loader(PyObject *d, const char *filename, const char *loader_name)
 {
     PyInterpreterState *interp;
     PyThreadState *tstate;