diff options
Diffstat (limited to 'networking/libiproute/iplink.c')
-rw-r--r-- | networking/libiproute/iplink.c | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/networking/libiproute/iplink.c b/networking/libiproute/iplink.c index 33f38918a..ef4d6b9a5 100644 --- a/networking/libiproute/iplink.c +++ b/networking/libiproute/iplink.c | |||
@@ -10,28 +10,24 @@ | |||
10 | * | 10 | * |
11 | */ | 11 | */ |
12 | 12 | ||
13 | #include <stdio.h> | 13 | #include <sys/ioctl.h> |
14 | #include <sys/socket.h> | ||
15 | |||
16 | #include <errno.h> | ||
14 | #include <stdlib.h> | 17 | #include <stdlib.h> |
18 | #include <string.h> | ||
15 | #include <unistd.h> | 19 | #include <unistd.h> |
16 | #include <syslog.h> | 20 | |
17 | #include <fcntl.h> | ||
18 | #include <errno.h> | ||
19 | #include <sys/socket.h> | ||
20 | #include <linux/if.h> | 21 | #include <linux/if.h> |
21 | #include <linux/if_packet.h> | 22 | #include <linux/if_packet.h> |
22 | #include <linux/if_ether.h> | 23 | #include <linux/if_ether.h> |
23 | #include <linux/sockios.h> | 24 | #include <linux/sockios.h> |
24 | #include <netinet/in.h> | ||
25 | #include <arpa/inet.h> | ||
26 | #include <string.h> | ||
27 | #include <sys/ioctl.h> | ||
28 | #include <linux/sockios.h> | ||
29 | 25 | ||
30 | #include "rt_names.h" | 26 | #include "rt_names.h" |
31 | #include "utils.h" | 27 | #include "utils.h" |
32 | #include "ip_common.h" | 28 | #include "ip_common.h" |
33 | 29 | ||
34 | #include "busybox.h" | 30 | #include "libbb.h" |
35 | 31 | ||
36 | static int do_link; | 32 | static int do_link; |
37 | 33 | ||