]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
iplink_bareudp: use common include syntax
authorStephen Hemminger <stephen@networkplumber.org>
Wed, 8 Jul 2020 15:38:58 +0000 (08:38 -0700)
committerStephen Hemminger <stephen@networkplumber.org>
Wed, 8 Jul 2020 15:38:58 +0000 (08:38 -0700)
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 <stephen@networkplumber.org>
ip/iplink_bareudp.c

index 885e11101facd14d2dcbf6db2163a0fcea7f8fc9..860ec69938a07e803ae68acb83b2042ee4b9d49e 100644 (file)
@@ -1,12 +1,12 @@
 /* SPDX-License-Identifier: GPL-2.0 */
 
 #include <stdio.h>
+#include <linux/if_ether.h>
+#include <linux/if_link.h>
+#include <linux/netlink.h>
+#include <linux/rtnetlink.h>
 
 #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"