blob: 64b813aea40fb14d1de9a16e3cf6e519aa6cbeb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/** \ingroup py_c
* \file python/system.h
*/
#ifndef H_SYSTEM_PYTHON
#define H_SYSTEM_PYTHON
#include "Python.h"
#ifdef __LCLINT__
#undef PyObject_HEAD
#define PyObject_HEAD int _PyObjectHead;
#endif
#include "../system.h"
#endif /* H_SYSTEM_PYTHON */
|