From: Stephen Hemminger Date: Wed, 8 Jul 2020 15:38:58 +0000 (-0700) Subject: iplink_bareudp: use common include syntax X-Git-Tag: v5.8.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d44bcd2fbf36d113caa8b543f4e36c549f02455e;p=thirdparty%2Fiproute2.git iplink_bareudp: use common include syntax Follow the precedent of other parts of iproute2 follow the example of: Standard libc headers Linux headers Iproute2 support headers Signed-off-by: Stephen Hemminger --- diff --git a/ip/iplink_bareudp.c b/ip/iplink_bareudp.c index 885e11101..860ec6993 100644 --- a/ip/iplink_bareudp.c +++ b/ip/iplink_bareudp.c @@ -1,12 +1,12 @@ /* SPDX-License-Identifier: GPL-2.0 */ #include +#include +#include +#include +#include #include "libnetlink.h" -#include "linux/if_ether.h" -#include "linux/if_link.h" -#include "linux/netlink.h" -#include "linux/rtnetlink.h" #include "rt_names.h" #include "utils.h" #include "ip_common.h"