replace Py_(u)intptr_t with the c99 standard types
diff --git a/Objects/descrobject.c b/Objects/descrobject.c
index 8b53ac2..076e741 100644
--- a/Objects/descrobject.c
+++ b/Objects/descrobject.c
@@ -1019,7 +1019,7 @@
 static PyObject *
 wrapper_richcompare(PyObject *a, PyObject *b, int op)
 {
-    Py_intptr_t result;
+    intptr_t result;
     PyObject *v;
     PyWrapperDescrObject *a_descr, *b_descr;