Use the right types for a couple of fields of the type structure.
diff --git a/Doc/ext/typestruct.h b/Doc/ext/typestruct.h
index eb7ad00..85ce049 100644
--- a/Doc/ext/typestruct.h
+++ b/Doc/ext/typestruct.h
@@ -55,8 +55,8 @@
 
     /* Attribute descriptor and subclassing stuff */
     struct PyMethodDef *tp_methods;
-    struct memberlist *tp_members;
-    struct getsetlist *tp_getset;
+    struct PyMemberDef *tp_members;
+    struct PyGetSetDef *tp_getset;
     struct _typeobject *tp_base;
     PyObject *tp_dict;
     descrgetfunc tp_descr_get;