commit | 7dbf74c5b976ae92aab5c941cc777bb0c6a36592 | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Fri Jan 08 13:42:00 2016 +0000 |
committer | Damien George <damien.p.george@gmail.com> | Fri Jan 08 13:42:00 2016 +0000 |
tree | 9d58e5c3d3bc8589129a3340f2b0d21f3dc853de | |
parent | 1404d620c018b543534629cb54c48bacc1806315 [diff] [blame] |
py/parse: Include unistd.h for ssize_t definition. In some cases ssize_t is not defined by already included headers.
diff --git a/py/parse.c b/py/parse.c index 04629e0..775bf68 100644 --- a/py/parse.c +++ b/py/parse.c
@@ -27,6 +27,7 @@ #include <stdbool.h> #include <stdint.h> #include <stdio.h> +#include <unistd.h> // for ssize_t #include <assert.h> #include <string.h>