From 6d7e47087fa40a360aa38a576c245e797564dbbe Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 1 Jan 2015 20:40:19 +0000 Subject: unix: Prefix includes with py/; remove need for -I../py. --- unix/main.c | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) (limited to 'unix/main.c') diff --git a/unix/main.c b/unix/main.c index d3ab53da6..0f1e26f51 100644 --- a/unix/main.c +++ b/unix/main.c @@ -35,20 +35,17 @@ #include #include -#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; -- cgit v1.2.3