diff options
author | 2019-01-30 16:47:41 +0100 | |
---|---|---|
committer | 2019-01-30 17:43:09 +0100 | |
commit | 67371907c2433f5233d4a669a1c9176539e9928f (patch) | |
tree | b4b5119c495fde382fc7c70d4398c943364c2372 /lib/src/common.c | |
parent | e5145b878f9de35676085409878a66899d2ee4f2 (diff) |
[HICN-19] Add support for Windows 10 x64 for libhicn (lib)
Change-Id: I5109d5ce293265fca557c2ef952fcb1c13b9d816
Signed-off-by: Angelo Mantellini <manangel@cisco.com>
Diffstat (limited to 'lib/src/common.c')
-rw-r--r-- | lib/src/common.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/src/common.c b/lib/src/common.c index 4b7c4a2a7..de4ece339 100644 --- a/lib/src/common.c +++ b/lib/src/common.c @@ -22,8 +22,10 @@ #include <stdlib.h> #include <string.h> // memset #include <sys/types.h> // getaddrinfo -#include <sys/socket.h> // '' -#include <netdb.h> // '' +#ifndef _WIN32 +#include <sys/socket.h> +#include <netdb.h> +#endif #include <stdio.h> #include "common.h" |