stop using __u32 etc. uint32_t is there for a reason
diff --git a/networking/libiproute/rtm_map.h b/networking/libiproute/rtm_map.h
index 1ffb940..b9c8c50 100644
--- a/networking/libiproute/rtm_map.h
+++ b/networking/libiproute/rtm_map.h
@@ -5,7 +5,7 @@
 char *rtnl_rtntype_n2a(int id, char *buf, int len);
 int rtnl_rtntype_a2n(int *id, char *arg);
 
-int get_rt_realms(__u32 *realms, char *arg);
+int get_rt_realms(uint32_t *realms, char *arg);
 
 
 #endif /* __RTM_MAP_H__ */