adjust declaration
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index de1e445..e2316bd 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -2347,7 +2347,8 @@
 #include "typeslots.inc"
 };
 
-PyObject* PyType_FromSpec(PyType_Spec *spec)
+PyObject *
+PyType_FromSpec(PyType_Spec *spec)
 {
     PyHeapTypeObject *res = (PyHeapTypeObject*)PyType_GenericAlloc(&PyType_Type, 0);
     char *res_start = (char*)res;