Make private function static
diff --git a/Python/marshal.c b/Python/marshal.c
index c253119..901b9c6 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -654,7 +654,7 @@
 	}
 }
 
-PyObject *
+static PyObject *
 read_object(RFILE *p)
 {
 	PyObject *v;