diff options
author | Damien George <damien.p.george@gmail.com> | 2015-12-18 12:33:08 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-12-18 12:33:08 +0000 |
commit | ab8012bd8098e155e38ef6dead62bca8a200e613 (patch) | |
tree | 64bb884af5a0151038b8b0061ffe1f352c3687db /py | |
parent | a83124361e19ebc24667a1b618429277e9fc321c (diff) |
py/emitglue: Add include of unistd.h for read function.
Diffstat (limited to 'py')
-rw-r--r-- | py/emitglue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/py/emitglue.c b/py/emitglue.c index 7ebd9c351..b46e0a67d 100644 --- a/py/emitglue.c +++ b/py/emitglue.c @@ -379,6 +379,7 @@ mp_raw_code_t *mp_raw_code_load_mem(const byte *buf, size_t len) { #include <sys/stat.h> #include <fcntl.h> +#include <unistd.h> typedef struct _mp_lexer_file_buf_t { int fd; |