1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-17 18:43:50 +01:00

cpu/native: add conditional include on OS X for IFNAMSIZ

This commit is contained in:
Thomas Eichinger 2015-07-01 15:59:21 +02:00
parent d9c9c87cf3
commit f10939c01e

View File

@ -30,6 +30,10 @@ extern "C" {
#include "net/if.h" #include "net/if.h"
#ifdef __MACH__
#include "net/if_var.h"
#endif
/** /**
* @brief tap interface state * @brief tap interface state
*/ */