summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Haszlakiewicz <erh+git@nimenees.com>2020-06-14 03:11:44 +0000
committerEric Haszlakiewicz <erh+git@nimenees.com>2020-06-14 03:11:44 +0000
commit9128ec49b126ad996468ab4df290916241e2864d (patch)
treefc70ff2b9f42e2630e57791a83a5858be0efc1a7
parent5ebfeaedc5413452aff7fa733abfabe97df100e8 (diff)
downloadjson-c-9128ec49b126ad996468ab4df290916241e2864d.tar.gz
Include unistd.h to fix the build on OSX
-rw-r--r--json_object_iterator.c1
-rw-r--r--json_object_private.h4
2 files changed, 5 insertions, 0 deletions
diff --git a/json_object_iterator.c b/json_object_iterator.c
index 796015e..1c2b3f2 100644
--- a/json_object_iterator.c
+++ b/json_object_iterator.c
@@ -9,6 +9,7 @@
*
*******************************************************************************
*/
+#include "config.h"
#include <stddef.h>
diff --git a/json_object_private.h b/json_object_private.h
index 4413955..d8dacd2 100644
--- a/json_object_private.h
+++ b/json_object_private.h
@@ -24,6 +24,10 @@ struct json_object;
#include "json_inttypes.h"
#include "json_types.h"
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif /* HAVE_UNISTD_H */
+
#ifdef _MSC_VER
#include <BaseTsd.h>
typedef SSIZE_T ssize_t;