stop using __u32 etc. uint32_t is there for a reason
diff --git a/networking/libiproute/rtm_map.c b/networking/libiproute/rtm_map.c
index 8aaee4b..7eb4c71 100644
--- a/networking/libiproute/rtm_map.c
+++ b/networking/libiproute/rtm_map.c
@@ -88,9 +88,9 @@
 	return 0;
 }
 
-int get_rt_realms(__u32 *realms, char *arg)
+int get_rt_realms(uint32_t *realms, char *arg)
 {
-	__u32 realm = 0;
+	uint32_t realm = 0;
 	char *p = strchr(arg, '/');
 
 	*realms = 0;