Browse Source

Added missing dependency #989

pull/996/head
Luca Deri 2 years ago
parent
commit
aecb97042e
  1. 3
      include/n2n_typedefs.h

3
include/n2n_typedefs.h

@ -54,8 +54,6 @@ typedef unsigned long in_addr_t;
#endif /* #if defined(_MSC_VER) || defined(__MINGW32__) */ #endif /* #if defined(_MSC_VER) || defined(__MINGW32__) */
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
#include <machine/endian.h> #include <machine/endian.h>
#endif #endif
@ -119,6 +117,7 @@ typedef unsigned long in_addr_t;
#pragma pack(push,1) #pragma pack(push,1)
#endif #endif
#include <time.h>
// those are definitely not typedefs (with a view to the filename) but neither are they defines // those are definitely not typedefs (with a view to the filename) but neither are they defines
static const n2n_mac_t broadcast_mac = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF }; static const n2n_mac_t broadcast_mac = { 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };

Loading…
Cancel
Save