diff options
author | Angelo Mantellini <manangel@cisco.com> | 2019-01-30 16:47:41 +0100 |
---|---|---|
committer | Angelo Mantellini <manangel@cisco.com> | 2019-01-30 17:43:09 +0100 |
commit | 67371907c2433f5233d4a669a1c9176539e9928f (patch) | |
tree | b4b5119c495fde382fc7c70d4398c943364c2372 /lib/src/compat.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/compat.c')
-rw-r--r-- | lib/src/compat.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/src/compat.c b/lib/src/compat.c index 8b558a56e..07f92105e 100644 --- a/lib/src/compat.c +++ b/lib/src/compat.c @@ -17,8 +17,9 @@ * @file compat.c * @brief Implementation of the compatibility layer. */ - +#ifndef _WIN32 #include <netinet/in.h> +#endif #include <string.h> // memset #include <stddef.h> // offsetof |