From: Felix Fietkau Date: Mon, 7 Oct 2013 13:47:43 +0000 (+0200) Subject: macvlan: turns out netinet/ether.h is needed on some linux systems X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=15c26472e9ff09b4bdb3b0ec04a762a3805120ee macvlan: turns out netinet/ether.h is needed on some linux systems Signed-off-by: Felix Fietkau --- diff --git a/macvlan.c b/macvlan.c index f42f3e5..28567dc 100644 --- a/macvlan.c +++ b/macvlan.c @@ -19,6 +19,10 @@ #include #include +#ifdef linux +#include +#endif + #include "netifd.h" #include "device.h" #include "interface.h"