Added prototype + doc for PySequence_Length()
diff --git a/Include/abstract.h b/Include/abstract.h
index be654c9..fcb5fe6 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -621,6 +621,13 @@
 
        */
 
+     int PySequence_Lenth Py_PROTO((PyObject *o));
+
+       /*
+         Return the length of sequence object o, or -1 on failure.
+
+       */
+
      PyObject *PySequence_Concat Py_PROTO((PyObject *o1, PyObject *o2));
 
        /*