Style consistency, so "grep ^function ..." works as expected.
diff --git a/Python/modsupport.c b/Python/modsupport.c
index a2a095e..bca3d6f 100644
--- a/Python/modsupport.c
+++ b/Python/modsupport.c
@@ -89,7 +89,8 @@
 
 /* Helper for mkvalue() to scan the length of a format */
 
-static int countformat(char *format, int endchar)
+static int
+countformat(char *format, int endchar)
 {
 	int count = 0;
 	int level = 0;
@@ -400,7 +401,8 @@
 }
 
 
-PyObject *Py_BuildValue(char *format, ...)
+PyObject *
+Py_BuildValue(char *format, ...)
 {
 	va_list va;
 	PyObject* retval;