diff options
author | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:16:58 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-01-01 21:16:58 +0000 |
commit | fe7d542352738e14c6d03bcc55b1e89b4e7c5c96 (patch) | |
tree | 4a65542c39f0c8a9fb2ede8768acd8333a772a81 /esp8266/pybstdio.c | |
parent | 4ef4ffe1c563c1f1c91d49667cc31f3603f756d1 (diff) | |
download | micropython-fe7d542352738e14c6d03bcc55b1e89b4e7c5c96.tar.gz micropython-fe7d542352738e14c6d03bcc55b1e89b4e7c5c96.zip |
esp8266: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'esp8266/pybstdio.c')
-rw-r--r-- | esp8266/pybstdio.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/esp8266/pybstdio.c b/esp8266/pybstdio.c index 1b611486c6..d8f5f9b8f2 100644 --- a/esp8266/pybstdio.c +++ b/esp8266/pybstdio.c @@ -25,16 +25,11 @@ */ #include <stdio.h> -#include <stdint.h> #include <string.h> #include <errno.h> -#include "mpconfig.h" -#include "misc.h" -#include "qstr.h" -#include "misc.h" -#include "obj.h" -#include "stream.h" +#include "py/obj.h" +#include "py/stream.h" #include "pybstdio.h" #include MICROPY_HAL_H |