summaryrefslogtreecommitdiffstatshomepage
path: root/unix/main.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-01-01 20:40:19 +0000
committerDamien George <damien.p.george@gmail.com>2015-01-01 20:40:19 +0000
commit6d7e47087fa40a360aa38a576c245e797564dbbe (patch)
treec6a32b0bd2797becad5518f550031515665007b2 /unix/main.c
parent3765ea419a7b68d3349a3c90089cfec9063db94b (diff)
downloadmicropython-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.c21
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;