diff options
-rw-r--r-- | Include/compile.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Include/compile.h b/Include/compile.h index 0cc228c..4ac6982 100644 --- a/Include/compile.h +++ b/Include/compile.h @@ -1,12 +1,13 @@ #ifndef Py_COMPILE_H #define Py_COMPILE_H + +#include "code.h" + #ifdef __cplusplus extern "C" { #endif -#include "code.h" - /* Public interface */ struct _node; /* Declare the existence of this type */ PyAPI_FUNC(PyCodeObject *) PyNode_Compile(struct _node *, const char *); |