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/modpyb.c | |
parent | 4ef4ffe1c563c1f1c91d49667cc31f3603f756d1 (diff) |
esp8266: Prefix includes with py/; remove need for -I../py.
Diffstat (limited to 'esp8266/modpyb.c')
-rw-r--r-- | esp8266/modpyb.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/esp8266/modpyb.c b/esp8266/modpyb.c index d40745b8f..eeee67a88 100644 --- a/esp8266/modpyb.c +++ b/esp8266/modpyb.c @@ -24,15 +24,11 @@ * THE SOFTWARE. */ -#include <stdint.h> #include <stdio.h> -#include "mpconfig.h" -#include "misc.h" -#include "nlr.h" -#include "qstr.h" -#include "obj.h" -#include "gc.h" +#include "py/nlr.h" +#include "py/obj.h" +#include "py/gc.h" #include "gccollect.h" #include "pyexec.h" #include "pybstdio.h" |