diff options
Diffstat (limited to 'shared/runtime')
-rw-r--r-- | shared/runtime/gchelper_generic.c | 2 | ||||
-rw-r--r-- | shared/runtime/gchelper_native.c | 2 | ||||
-rw-r--r-- | shared/runtime/mpirq.c | 2 | ||||
-rw-r--r-- | shared/runtime/pyexec.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/shared/runtime/gchelper_generic.c b/shared/runtime/gchelper_generic.c index 3e7e33ab1..dcd35f9c7 100644 --- a/shared/runtime/gchelper_generic.c +++ b/shared/runtime/gchelper_generic.c @@ -28,7 +28,7 @@ #include "py/mpstate.h" #include "py/gc.h" -#include "lib/utils/gchelper.h" +#include "shared/runtime/gchelper.h" #if MICROPY_ENABLE_GC diff --git a/shared/runtime/gchelper_native.c b/shared/runtime/gchelper_native.c index 6bf386b51..1e4af9c84 100644 --- a/shared/runtime/gchelper_native.c +++ b/shared/runtime/gchelper_native.c @@ -28,7 +28,7 @@ #include "py/mpstate.h" #include "py/gc.h" -#include "lib/utils/gchelper.h" +#include "shared/runtime/gchelper.h" #if MICROPY_ENABLE_GC diff --git a/shared/runtime/mpirq.c b/shared/runtime/mpirq.c index 02139f24d..8e474bf5a 100644 --- a/shared/runtime/mpirq.c +++ b/shared/runtime/mpirq.c @@ -29,7 +29,7 @@ #include "py/runtime.h" #include "py/gc.h" -#include "lib/utils/mpirq.h" +#include "shared/runtime/mpirq.h" #if MICROPY_ENABLE_SCHEDULER diff --git a/shared/runtime/pyexec.c b/shared/runtime/pyexec.c index 4446b36b6..006ec096f 100644 --- a/shared/runtime/pyexec.c +++ b/shared/runtime/pyexec.c @@ -39,8 +39,8 @@ #include "irq.h" #include "usb.h" #endif -#include "lib/mp-readline/readline.h" -#include "lib/utils/pyexec.h" +#include "shared/readline/readline.h" +#include "shared/runtime/pyexec.h" #include "genhdr/mpversion.h" pyexec_mode_kind_t pyexec_mode_kind = PYEXEC_MODE_FRIENDLY_REPL; |