- janitorial: include proper prototypes in libiproute.
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sun, 2 Apr 2006 21:14:19 +0000 (21:14 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Sun, 2 Apr 2006 21:14:19 +0000 (21:14 -0000)
networking/libiproute/iproute.c
networking/libiproute/ll_addr.c
networking/libiproute/ll_proto.c
networking/libiproute/ll_types.c

index 7b513005013e8e1337b16f788216561baf5cd72a..cb750e628430270b48ef7d8519091cc4f44ff771 100644 (file)
@@ -22,6 +22,7 @@
 
 #include "rt_names.h"
 #include "utils.h"
+#include "ip_common.h"
 
 #include "libbb.h"
 
index ada685f4eba9750412aecf6d7f5831ce91782b23..c4c44646319dd0884d6c8aa65693f893f4e764f2 100644 (file)
 #include <arpa/inet.h>
 #include <string.h>
 #include <net/if_arp.h>
+
+#include "rt_names.h"
 #include "utils.h"
+
 #include "libbb.h"
 
 const char *ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen)
index 873253050d2832e0f7dde468ef0ff5209ebe530b..9ee5ab23f8159df78cd6c16ec095d0b84e462749 100644 (file)
@@ -12,6 +12,8 @@
 #include <stdio.h>
 #include <arpa/inet.h>
 #include <string.h>
+
+#include "rt_names.h"
 #include "utils.h"
 
 #if __GLIBC__ >=2 && __GLIBC_MINOR >= 1
index fc5a015302bff68521cbd41f87393dfc24d81f17..a38ecc7c0880281545b3d31e61eaea4fa2c6a6d8 100644 (file)
@@ -13,6 +13,8 @@
 
 #include <linux/if_arp.h>
 
+#include "rt_names.h"
+
 const char * ll_type_n2a(int type, char *buf, int len)
 {
 #define __PF(f,n) { ARPHRD_##f, #n },