diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:06:20 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:06:20 +0000 |
commit | 2cf6dfa280a8149941aafc852fbaae8bdfc4999e (patch) | |
tree | 9e9ea6ed5591f424359ce25cd0f56d8932380a0e /stmhal/pyexec.c | |
parent | b36be5ff5172c97a8f37228c1ec163df466fd588 (diff) | |
download | micropython-2cf6dfa280a8149941aafc852fbaae8bdfc4999e.tar.gz micropython-2cf6dfa280a8149941aafc852fbaae8bdfc4999e.zip |
stmhal: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'stmhal/pyexec.c')
-rw-r--r-- | stmhal/pyexec.c | 16 |
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; |