py/parse: Include unistd.h for ssize_t definition.

In some cases ssize_t is not defined by already included headers.
urandom
Damien George 2016-01-08 13:42:00 +00:00
parent 1404d620c0
commit 7dbf74c5b9
1 changed files with 1 additions and 0 deletions

View File

@ -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>