]> granicus.if.org Git - python/commitdiff
Removed redundant declaration of _PyLong_NumBits().
authorTim Peters <tim.peters@gmail.com>
Thu, 23 Sep 2004 01:56:02 +0000 (01:56 +0000)
committerTim Peters <tim.peters@gmail.com>
Thu, 23 Sep 2004 01:56:02 +0000 (01:56 +0000)
Include/longobject.h

index 8354963efc666f33e910d350326df2f0256dd736..209c082fe9680ecb7cdecccd89a5fa0213f4b1ce 100644 (file)
@@ -53,7 +53,6 @@ PyAPI_FUNC(PyObject *) PyLong_FromUnicode(Py_UNICODE*, int, int);
 PyAPI_FUNC(int) _PyLong_Sign(PyObject *v);
 
 
-PyAPI_FUNC(size_t) _PyLong_NumBits(PyObject *v);
 /* _PyLong_NumBits.  Return the number of bits needed to represent the
    absolute value of a long.  For example, this returns 1 for 1 and -1, 2
    for 2 and -2, and 2 for 3 and -3.  It returns 0 for 0.