From 7dbf74c5b976ae92aab5c941cc777bb0c6a36592 Mon Sep 17 00:00:00 2001
From: Damien George <damien.p.george@gmail.com>
Date: Fri, 8 Jan 2016 13:42:00 +0000
Subject: [PATCH] py/parse: Include unistd.h for ssize_t definition.

In some cases ssize_t is not defined by already included headers.
---
 py/parse.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/py/parse.c b/py/parse.c
index 04629e03f..775bf68b3 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>
 
-- 
GitLab