diff options
-rw-r--r-- | ports/esp8266/gccollect.c | 1 | ||||
-rw-r--r-- | py/gc.h | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/ports/esp8266/gccollect.c b/ports/esp8266/gccollect.c index 3618a5664..bca0e030c 100644 --- a/ports/esp8266/gccollect.c +++ b/ports/esp8266/gccollect.c @@ -26,6 +26,7 @@ #include <stdio.h> +#include "py/mpconfig.h" #include "py/gc.h" #include "gccollect.h" @@ -26,11 +26,9 @@ #ifndef MICROPY_INCLUDED_PY_GC_H #define MICROPY_INCLUDED_PY_GC_H +#include <stdbool.h> #include <stdint.h> -#include "py/mpconfig.h" -#include "py/misc.h" - void gc_init(void *start, void *end); // These lock/unlock functions can be nested. |