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/gccollect.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/gccollect.c')
-rw-r--r-- | esp8266/gccollect.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/esp8266/gccollect.c b/esp8266/gccollect.c index 460ccb6889..46f9bb94ce 100644 --- a/esp8266/gccollect.c +++ b/esp8266/gccollect.c @@ -25,13 +25,8 @@ */ #include <stdio.h> -#include <stdint.h> -#include "mpconfig.h" -#include "misc.h" -#include "qstr.h" -#include "obj.h" -#include "gc.h" +#include "py/gc.h" #include "gccollect.h" STATIC uint32_t stack_end; |