blob: c118af1201a4c854ab899e17ca9148ae21a72991 [file] [log] [blame]
Olivier Deprezf4ef2d02021-04-20 13:36:24 +02001/* Frame object interface */
2
3#ifndef Py_FRAMEOBJECT_H
4#define Py_FRAMEOBJECT_H
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9#include "pyframe.h"
10
11#ifndef Py_LIMITED_API
12# define Py_CPYTHON_FRAMEOBJECT_H
13# include "cpython/frameobject.h"
14# undef Py_CPYTHON_FRAMEOBJECT_H
15#endif
16
17#ifdef __cplusplus
18}
19#endif
20#endif /* !Py_FRAMEOBJECT_H */