diff options
author | Ilya Dmitrichenko <ilya@xively.com> | 2014-04-12 16:44:32 +0100 |
---|---|---|
committer | Ilya Dmitrichenko <ilya@xively.com> | 2014-04-12 16:45:35 +0100 |
commit | 5630b01920a81a59cba0c392dfdacf2ba0b1d5db (patch) | |
tree | 5ec90c02cc4f4ab2af9894023ade92159e17f0fe /py/stream.c | |
parent | 82c7b1b1d5c8ce0467bd580a86d20c645cec17df (diff) | |
download | micropython-5630b01920a81a59cba0c392dfdacf2ba0b1d5db.tar.gz micropython-5630b01920a81a59cba0c392dfdacf2ba0b1d5db.zip |
py: the entire `<unistd.h>` shouldn't be needed
Diffstat (limited to 'py/stream.c')
-rw-r--r-- | py/stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/stream.c b/py/stream.c index 52e5f6d4b2..f3df70fa51 100644 --- a/py/stream.c +++ b/py/stream.c @@ -1,4 +1,4 @@ -#include <unistd.h> +#include <string.h> #include "nlr.h" #include "misc.h" |