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/lcd.c | |
parent | 2cf6dfa280a8149941aafc852fbaae8bdfc4999e (diff) | |
download | micropython-b68d98d61cc013da2df98e5d77d7bf3598d0dd4d.tar.gz micropython-b68d98d61cc013da2df98e5d77d7bf3598d0dd4d.zip |
teensy: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'teensy/lcd.c')
-rw-r--r-- | teensy/lcd.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/teensy/lcd.c b/teensy/lcd.c index 5b991aac77..e79b7d5acb 100644 --- a/teensy/lcd.c +++ b/teensy/lcd.c @@ -1,9 +1,4 @@ -#include "mpconfig.h" -#include "nlr.h" -#include "misc.h" -#include "qstr.h" -#include "parse.h" -#include "obj.h" +#include "py/obj.h" #include "../stmhal/lcd.h" void lcd_init(void) { |