blob: 56d2c4c8d056445271ca4023a599fbea4c03fa4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/** \ingroup py_c
* \file python/system.h
*/
#ifndef H_SYSTEM_PYTHON
#define H_SYSTEM_PYTHON
#if defined(__APPLE__)
#include <sys/types.h>
#endif
#include "Python.h"
#include "../system.h"
#if ((PY_MAJOR_VERSION << 8) | (PY_MINOR_VERSION << 0)) < 0x0205
typedef ssize_t Py_ssize_t;
typedef Py_ssize_t (*lenfunc)(PyObject *);
#endif
#endif /* H_SYSTEM_PYTHON */
|