diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-26 14:48:52 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-07-26 15:05:15 +0300 |
commit | f2f761c0c336d4001f6b1040c02ac9973149f911 (patch) | |
tree | f616635afb167ba39801f1f20273892547bffe30 /py | |
parent | 243f8988be2f9d8ba92ef605fe74c123ad26d536 (diff) | |
download | micropython-f2f761c0c336d4001f6b1040c02ac9973149f911.tar.gz micropython-f2f761c0c336d4001f6b1040c02ac9973149f911.zip |
py/stream: Stream module works with errno's, so should include mperrno.h.
Diffstat (limited to 'py')
-rw-r--r-- | py/stream.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/stream.h b/py/stream.h index bd3fa0bdc7..28e0d2dae2 100644 --- a/py/stream.h +++ b/py/stream.h @@ -27,6 +27,7 @@ #define __MICROPY_INCLUDED_PY_STREAM_H__ #include "py/obj.h" +#include "py/mperrno.h" #define MP_STREAM_ERROR ((mp_uint_t)-1) |