mirror of
https://github.com/rizinorg/cutter.git
synced 2025-02-01 09:07:26 +00:00
18e98e7868
Don't wrap whole cpp file in ifdef, it confuses clang-format.
10 lines
143 B
C
10 lines
143 B
C
#ifndef PYTHONAPI_H
|
|
#define PYTHONAPI_H
|
|
|
|
#define Py_LIMITED_API 0x03050000
|
|
#include <Python.h>
|
|
|
|
PyObject *PyInit_api();
|
|
|
|
#endif // PYTHONAPI_H
|