ANSIfy functions that were hiding inside a macro.
diff --git a/Objects/classobject.c b/Objects/classobject.c
index d1eb451..3b97a02 100644
--- a/Objects/classobject.c
+++ b/Objects/classobject.c
@@ -1314,7 +1314,7 @@
 
 
 #define UNARY(funcname, methodname) \
-static PyObject *funcname(self) PyInstanceObject *self; { \
+static PyObject *funcname(PyInstanceObject *self) { \
 	static PyObject *o; \
 	if (o == NULL) o = PyString_InternFromString(methodname); \
 	return generic_unary_op(self, o); \