aboutsummaryrefslogtreecommitdiffstats
path: root/package/utils/busybox/patches/260-arping_missing_includes.patch
blob: a9d4a62af34fca8d0e2134f8f6ceb6d4f2e7ed06 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/networking/arping.c
+++ b/networking/arping.c
@@ -24,6 +24,8 @@
 
 #include <arpa/inet.h>
 #include <net/if.h>
+#include <net/if_arp.h>
+#include <netinet/if_ether.h>
 #include <netinet/ether.h>
 #include <netpacket/packet.h>