From d44bcd2fbf36d113caa8b543f4e36c549f02455e Mon Sep 17 00:00:00 2001 From: Stephen Hemminger Date: Wed, 8 Jul 2020 08:38:58 -0700 Subject: [PATCH] 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 --- ip/iplink_bareudp.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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" -- 2.47.2