blob: b9e23eb816529b52143783c99885565cc3eb58d4 [file] [log] [blame]
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02001/* Definitions for bytecode */
2
3#ifndef Py_CODE_H
4#define Py_CODE_H
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9typedef struct PyCodeObject PyCodeObject;
10
11#ifndef Py_LIMITED_API
12# define Py_CPYTHON_CODE_H
13# include "cpython/code.h"
14# undef Py_CPYTHON_CODE_H
15#endif
16
17#ifdef __cplusplus
18}
19#endif
20#endif /* !Py_CODE_H */