py/gc: Change include of stdint.h to stddef.h.
No std-int types are used in gc.h, but size_t is which needs stddef.h. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
1f800cac3c
commit
9dedcf122d
|
@ -26,6 +26,8 @@
|
|||
#ifndef MICROPY_INCLUDED_ESP8266_GCCOLLECT_H
|
||||
#define MICROPY_INCLUDED_ESP8266_GCCOLLECT_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
extern uint32_t _text_start;
|
||||
extern uint32_t _text_end;
|
||||
extern uint32_t _irom0_text_start;
|
||||
|
|
Loading…
Reference in New Issue