diff options
author | Damien George <damien.p.george@gmail.com> | 2015-12-17 22:17:26 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-12-17 22:17:26 +0000 |
commit | 2fe7e6bef0b41129c1e443660edd7ad29b74daaa (patch) | |
tree | 2ceca21f5274978b8a0503eecad8ca907f273fe7 /py/parse.h | |
parent | 3db2b230602b0140b3ea430c61d415335d939274 (diff) |
py/parse: Include stddef.h for definition of size_t.
Diffstat (limited to 'py/parse.h')
-rw-r--r-- | py/parse.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/parse.h b/py/parse.h index 0f1797aab..4208ce10a 100644 --- a/py/parse.h +++ b/py/parse.h @@ -26,6 +26,7 @@ #ifndef __MICROPY_INCLUDED_PY_PARSE_H__ #define __MICROPY_INCLUDED_PY_PARSE_H__ +#include <stddef.h> #include <stdint.h> #include "py/mpconfig.h" |