[pypy-svn] r75227 - pypy/branch/cpyext-init-cleanup/pypy/module/cpyext/include

afa at codespeak.net afa at codespeak.net
Wed Jun 9 01:51:40 CEST 2010


Author: afa
Date: Wed Jun  9 01:51:38 2010
New Revision: 75227

Modified:
   pypy/branch/cpyext-init-cleanup/pypy/module/cpyext/include/complexobject.inl
Log:
kill a compilation warning


Modified: pypy/branch/cpyext-init-cleanup/pypy/module/cpyext/include/complexobject.inl
==============================================================================
--- pypy/branch/cpyext-init-cleanup/pypy/module/cpyext/include/complexobject.inl	(original)
+++ pypy/branch/cpyext-init-cleanup/pypy/module/cpyext/include/complexobject.inl	Wed Jun  9 01:51:38 2010
@@ -6,6 +6,9 @@
 extern "C" {
 #endif
 
+/* generated function */
+PyAPI_FUNC(void) _PyComplex_AsCComplex(PyObject *, Py_complex *);
+
 Py_LOCAL_INLINE(Py_complex) PyComplex_AsCComplex(PyObject *obj)
 {
     Py_complex result;



More information about the Pypy-commit mailing list