diff options
| author | Garrett D'Amore <garrett@damore.org> | 2024-10-28 18:10:11 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2024-10-28 18:10:11 -0700 |
| commit | b3936a2d03a3909cd4fcca8c608f943b367c3c88 (patch) | |
| tree | 7276919239cb9d2e6b7822e92ca7621a7d14614b | |
| parent | 801ace5e9adca4e53497d6c7133cc32cf94b23b7 (diff) | |
| download | nng-b3936a2d03a3909cd4fcca8c608f943b367c3c88.tar.gz nng-b3936a2d03a3909cd4fcca8c608f943b367c3c88.tar.bz2 nng-b3936a2d03a3909cd4fcca8c608f943b367c3c88.zip | |
Include sys/types.h to resolve possible missing type
| -rw-r--r-- | src/platform/posix/posix_udp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/platform/posix/posix_udp.c b/src/platform/posix/posix_udp.c index 4ef4c68c..a7eb7144 100644 --- a/src/platform/posix/posix_udp.c +++ b/src/platform/posix/posix_udp.c @@ -12,6 +12,7 @@ #include "nng/nng.h" #include "platform/posix/posix_impl.h" #include <sys/errno.h> +#include <sys/types.h> #ifdef NNG_PLATFORM_POSIX #include "platform/posix/posix_pollq.h" |
