diff options
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; |