From c7837b9a298ba40b776242b090d6a1415d414488 Mon Sep 17 00:00:00 2001 From: Petr Kulhavy Date: Mon, 15 May 2017 10:17:52 +0200 Subject: [PATCH] Remove conflicting netinet/ether.h On some platforms like br-arm-cortex-a9-musl struct ethhdr was defined twice due to including of both linux/if_ether.h and netinet/ether.h. Which lead to a compilation error. Remove netinet/ether.h as the official header for struct ethhdr is linux/if_ether.h Signed-off-by: Petr Kulhavy --- raw.c | 1 - 1 file changed, 1 deletion(-) diff --git a/raw.c b/raw.c index f51c829..73e45b4 100644 --- a/raw.c +++ b/raw.c @@ -20,7 +20,6 @@ #include #include #include -#include #include #include #include