Adding missing "static" declarations (found by "make smelly").
diff --git a/Objects/descrobject.c b/Objects/descrobject.c
index 1d525da..e4d9f33 100644
--- a/Objects/descrobject.c
+++ b/Objects/descrobject.c
@@ -673,7 +673,7 @@
 	return PyObject_GetIter(pp->dict);
 }
 
-PyObject *
+static PyObject *
 proxy_str(proxyobject *pp)
 {
 	return PyObject_Str(pp->dict);
@@ -693,7 +693,7 @@
 	return 0;
 }
 
-PyTypeObject proxytype = {
+static PyTypeObject proxytype = {
 	PyObject_HEAD_INIT(&PyType_Type)
 	0,					/* ob_size */
 	"dict-proxy",				/* tp_name */
@@ -827,7 +827,7 @@
 	return 0;
 }
 
-PyTypeObject wrappertype = {
+static PyTypeObject wrappertype = {
 	PyObject_HEAD_INIT(&PyType_Type)
 	0,					/* ob_size */
 	"method-wrapper",			/* tp_name */