fix for windows build
authorStefan Behnel <scoder@users.berlios.de>
Fri, 9 May 2008 05:30:59 +0000 (07:30 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 9 May 2008 05:30:59 +0000 (07:30 +0200)
Cython/Compiler/ExprNodes.py

index 25140ecbf9530d1109c7a4a058c4d4db4189ee14..ec57a0e2d86f6080a37d9de543c4c380854900a6 100644 (file)
@@ -4124,7 +4124,7 @@ static void __Pyx_CppExn2PyErr() {
 
 append_utility_code = [
 """
-static inline PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) {
+static INLINE PyObject* __Pyx_PyObject_Append(PyObject* L, PyObject* x) {
     if (likely(PyList_CheckExact(L))) {
         if (PyList_Append(L, x) < 0) return NULL;
         Py_INCREF(Py_None);