diff options
| author | Eric Haszlakiewicz <erh+git@nimenees.com> | 2020-06-14 03:11:44 +0000 |
|---|---|---|
| committer | Eric Haszlakiewicz <erh+git@nimenees.com> | 2020-06-14 03:11:44 +0000 |
| commit | 9128ec49b126ad996468ab4df290916241e2864d (patch) | |
| tree | fc70ff2b9f42e2630e57791a83a5858be0efc1a7 | |
| parent | 5ebfeaedc5413452aff7fa733abfabe97df100e8 (diff) | |
| download | json-c-9128ec49b126ad996468ab4df290916241e2864d.tar.gz | |
Include unistd.h to fix the build on OSX
| -rw-r--r-- | json_object_iterator.c | 1 | ||||
| -rw-r--r-- | json_object_private.h | 4 |
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; |
