ANSI-fication of the sources.
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 059f7ce..2503504 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -15,9 +15,7 @@
 /* Type object implementation */
 
 static PyObject *
-type_getattr(t, name)
-	PyTypeObject *t;
-	char *name;
+type_getattr(PyTypeObject *t, char *name)
 {
 	if (strcmp(name, "__name__") == 0)
 		return PyString_FromString(t->tp_name);
@@ -35,8 +33,7 @@
 }
 
 static PyObject *
-type_repr(v)
-	PyTypeObject *v;
+type_repr(PyTypeObject *v)
 {
 	char buf[100];
 	sprintf(buf, "<type '%.80s'>", v->tp_name);