diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:40:19 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 20:40:19 +0000 |
commit | 6d7e47087fa40a360aa38a576c245e797564dbbe (patch) | |
tree | c6a32b0bd2797becad5518f550031515665007b2 /unix/main.c | |
parent | 3765ea419a7b68d3349a3c90089cfec9063db94b (diff) | |
download | micropython-6d7e47087fa40a360aa38a576c245e797564dbbe.tar.gz micropython-6d7e47087fa40a360aa38a576c245e797564dbbe.zip |
unix: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'unix/main.c')
-rw-r--r-- | unix/main.c | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/unix/main.c b/unix/main.c index d3ab53da6e..0f1e26f51c 100644 --- a/unix/main.c +++ b/unix/main.c @@ -35,20 +35,17 @@ #include <sys/types.h> #include <errno.h> -#include "mpconfig.h" -#include "nlr.h" -#include "obj.h" -#include "parsehelper.h" -#include "compile.h" -#include "runtime0.h" -#include "runtime.h" -#include "builtin.h" -#include "repl.h" -#include "gc.h" +#include "py/nlr.h" +#include "py/compile.h" +#include "py/parsehelper.h" +#include "py/runtime.h" +#include "py/builtin.h" +#include "py/repl.h" +#include "py/gc.h" +#include "py/stackctrl.h" +#include "py/pfenv.h" #include "genhdr/py-version.h" #include "input.h" -#include "stackctrl.h" -#include "pfenv.h" // Command line options, with their defaults STATIC bool compile_only = false; |