Commit a9d4381b a9d4381b5da8db6d9fb05d6089baaf4b775b424d by Sergey Poznyakoff

python: cleanup

* python/libmu_py/libmu_py.c (_ro): Remove inline qualifier.
* python/libmu_py/libmu_py.h: Likewise.
1 parent 1236f0ab
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
17 17
18 #include "libmu_py.h" 18 #include "libmu_py.h"
19 19
20 inline PyObject * 20 PyObject *
21 _ro (PyObject *obj) 21 _ro (PyObject *obj)
22 { 22 {
23 Py_INCREF (obj); 23 Py_INCREF (obj);
......
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
63 } \ 63 } \
64 while (0) 64 while (0)
65 65
66 extern inline PyObject * _ro (PyObject *obj); 66 extern PyObject * _ro (PyObject *obj);
67 extern void _py_dealloc (PyObject *self); 67 extern void _py_dealloc (PyObject *self);
68 extern PyObject * status_object (int status, PyObject *py_obj); 68 extern PyObject * status_object (int status, PyObject *py_obj);
69 extern PyObject * _mu_py_attach_module (const char *name, PyMethodDef *methods); 69 extern PyObject * _mu_py_attach_module (const char *name, PyMethodDef *methods);
......