From f2f761c0c336d4001f6b1040c02ac9973149f911 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky <pfalcon@users.sourceforge.net> Date: Tue, 26 Jul 2016 14:48:52 +0300 Subject: [PATCH] py/stream: Stream module works with errno's, so should include mperrno.h. --- py/stream.h | 1 + 1 file changed, 1 insertion(+) diff --git a/py/stream.h b/py/stream.h index bd3fa0bdc..28e0d2dae 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) -- GitLab