summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/pyexec.c
diff options
context:
space:
mode:
Diffstat (limited to 'stmhal/pyexec.c')
-rw-r--r--stmhal/pyexec.c16
1 files changed, 7 insertions, 9 deletions
diff --git a/stmhal/pyexec.c b/stmhal/pyexec.c
index f1e645447c..98cdb4ea7a 100644
--- a/stmhal/pyexec.c
+++ b/stmhal/pyexec.c
@@ -28,14 +28,13 @@
#include <stdio.h>
#include <stdint.h>
-#include "mpconfig.h"
-#include "nlr.h"
-#include "obj.h"
-#include "parsehelper.h"
-#include "compile.h"
-#include "runtime.h"
-#include "repl.h"
-#include "gc.h"
+#include "py/nlr.h"
+#include "py/parsehelper.h"
+#include "py/compile.h"
+#include "py/runtime.h"
+#include "py/repl.h"
+#include "py/gc.h"
+#include "py/pfenv.h"
#ifdef MICROPY_HAL_H
#include MICROPY_HAL_H
#endif
@@ -44,7 +43,6 @@
#include "pyexec.h"
#include "pybstdio.h"
#include "genhdr/py-version.h"
-#include "pfenv.h"
pyexec_mode_kind_t pyexec_mode_kind = PYEXEC_MODE_FRIENDLY_REPL;
STATIC bool repl_display_debugging_info = 0;