diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-05-20 08:56:21 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-05-20 08:56:21 -0700 |
| commit | 198bdacae309bd306d71a735198518752381a191 (patch) | |
| tree | 3e45b67d21bdca79923a545c05b5517728d3e0a0 /src/platform | |
| parent | 2c123e082a4fea6fa82132f6ab0f7257daac3f59 (diff) | |
| download | nng-198bdacae309bd306d71a735198518752381a191.tar.gz nng-198bdacae309bd306d71a735198518752381a191.tar.bz2 nng-198bdacae309bd306d71a735198518752381a191.zip | |
fixes #462 mode_t missing during compilation
Diffstat (limited to 'src/platform')
| -rw-r--r-- | src/platform/posix/posix_aio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/platform/posix/posix_aio.h b/src/platform/posix/posix_aio.h index 08ae99ca..fb5e048a 100644 --- a/src/platform/posix/posix_aio.h +++ b/src/platform/posix/posix_aio.h @@ -20,6 +20,8 @@ #include "core/nng_impl.h" #include "posix_pollq.h" +#include <sys/types.h> // needed for mode_t + typedef struct nni_posix_pipedesc nni_posix_pipedesc; typedef struct nni_posix_epdesc nni_posix_epdesc; |
