1*26bdd445SBrad BishopFrom 6843cefb1d1d0017a714a2752bb008efd844f3e4 Mon Sep 17 00:00:00 2001 21a4b7ee2SBrad BishopFrom: Khem Raj <raj.khem@gmail.com> 31a4b7ee2SBrad BishopDate: Thu, 13 Jul 2017 16:20:08 -0700 41a4b7ee2SBrad BishopSubject: [PATCH] Adjust the order of headers to fix build for musl 51a4b7ee2SBrad Bishop 61a4b7ee2SBrad BishopFixes 71a4b7ee2SBrad Bishop kexec/ifdown.c:33:16: error: storage size of 'ifc' isn't known 81a4b7ee2SBrad Bishop 91a4b7ee2SBrad BishopUpstream-Status: Inappropriate [embedded specific] 101a4b7ee2SBrad BishopSigned-off-by: Khem Raj <raj.khem@gmail.com> 111a4b7ee2SBrad Bishop 121a4b7ee2SBrad Bishop--- 131a4b7ee2SBrad Bishop kexec/ifdown.c | 2 +- 141a4b7ee2SBrad Bishop 1 file changed, 1 insertion(+), 1 deletion(-) 151a4b7ee2SBrad Bishop 161a4b7ee2SBrad Bishopdiff --git a/kexec/ifdown.c b/kexec/ifdown.c 171a4b7ee2SBrad Bishopindex 9679ad7..82c6141 100644 181a4b7ee2SBrad Bishop--- a/kexec/ifdown.c 191a4b7ee2SBrad Bishop+++ b/kexec/ifdown.c 201a4b7ee2SBrad Bishop@@ -16,8 +16,8 @@ char *v_ifdown = "@(#)ifdown.c 1.11 02-Jun-1998 miquels@cistron.nl"; 211a4b7ee2SBrad Bishop #include <sys/socket.h> 221a4b7ee2SBrad Bishop #include <sys/time.h> 231a4b7ee2SBrad Bishop 241a4b7ee2SBrad Bishop-#include <net/if.h> 251a4b7ee2SBrad Bishop #include <netinet/in.h> 261a4b7ee2SBrad Bishop+#include <net/if.h> 271a4b7ee2SBrad Bishop 281a4b7ee2SBrad Bishop /* 291a4b7ee2SBrad Bishop * First, we find all shaper devices and down them. Then we 30