You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ueberzug/ueberzug/X/python.h

12 lines
190 B
C

#ifndef __PYTHON_H__
#define __PYTHON_H__
#ifndef __linux__
#error OS unsupported
#endif
#define PY_SSIZE_T_CLEAN // Make "s#" use Py_ssize_t rather than int.
#include <Python.h>
#endif