[pypy-svn] r73564 - pypy/branch/cpython-extension/pypy/module/cpyext/include

xoraxax at codespeak.net xoraxax at codespeak.net
Thu Apr 8 18:52:34 CEST 2010


Author: xoraxax
Date: Thu Apr  8 18:52:33 2010
New Revision: 73564

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/include/bufferobject.h
Log:
Fix linking error on windows.

Modified: pypy/branch/cpython-extension/pypy/module/cpyext/include/bufferobject.h
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/include/bufferobject.h	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/include/bufferobject.h	Thu Apr  8 18:52:33 2010
@@ -9,7 +9,7 @@
 extern "C" {
 #endif
 
-PyTypeObject PyBuffer_Type;
+PyAPI_DATA(PyTypeObject) PyBuffer_Type;
 
 #define PyBuffer_Check(op) (Py_TYPE(op) == &PyBuffer_Type)
 



More information about the Pypy-commit mailing list