diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:13:30 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:13:30 +0000 |
commit | b68d98d61cc013da2df98e5d77d7bf3598d0dd4d (patch) | |
tree | 8eac906571eb94f58dbd14c90d34527f2708318f /teensy/main.c | |
parent | 2cf6dfa280a8149941aafc852fbaae8bdfc4999e (diff) |
teensy: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'teensy/main.c')
-rw-r--r-- | teensy/main.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/teensy/main.c b/teensy/main.c index bc687fa67..f3b0079bb 100644 --- a/teensy/main.c +++ b/teensy/main.c @@ -3,19 +3,15 @@ #include <string.h> #include <stdlib.h> -#include "mpconfig.h" -#include "misc.h" -#include "qstr.h" -#include "nlr.h" -#include "lexer.h" -#include "lexermemzip.h" -#include "parse.h" -#include "obj.h" -#include "runtime.h" -#include "gc.h" +#include "py/nlr.h" +#include "py/parse.h" +#include "py/lexer.h" +#include "py/runtime.h" +#include "py/gc.h" #include "gccollect.h" #include "pyexec.h" #include "readline.h" +#include "lexermemzip.h" #include "Arduino.h" #include MICROPY_HAL_H |