Since the *_Init() are private, prefix with _, suggested by Skip
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index b982064..2c62b67 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -527,7 +527,7 @@
 
 static PyObject *builtin_object;
 
-int PyFrame_Init()
+int _PyFrame_Init()
 {
 	builtin_object = PyString_InternFromString("__builtins__");
 	return (builtin_object != NULL);
diff --git a/Objects/intobject.c b/Objects/intobject.c
index 10587ac..d9e4d31 100644
--- a/Objects/intobject.c
+++ b/Objects/intobject.c
@@ -939,7 +939,7 @@
 };
 
 int
-PyInt_Init(void)
+_PyInt_Init(void)
 {
 	PyIntObject *v;
 	int ival;