Index: uspace/srv/net/inetsrv/addrobj.h
===================================================================
--- uspace/srv/net/inetsrv/addrobj.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/addrobj.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,6 @@
 #define INET_ADDROBJ_H_
 
-#include <sys/types.h>
+#include <stddef.h>
+#include <stdint.h>
 #include "inetsrv.h"
 
Index: uspace/srv/net/inetsrv/icmp_std.h
===================================================================
--- uspace/srv/net/inetsrv/icmp_std.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/icmp_std.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,5 @@
 #define ICMP_STD_H_
 
-#include <sys/types.h>
+#include <stdint.h>
 
 #define IP_PROTO_ICMP 1
Index: uspace/srv/net/inetsrv/icmpv6_std.h
===================================================================
--- uspace/srv/net/inetsrv/icmpv6_std.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/icmpv6_std.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,5 @@
 #define ICMPV6_STD_H_
 
-#include <sys/types.h>
+#include <stdint.h>
 
 #define IP_PROTO_ICMPV6  58
Index: uspace/srv/net/inetsrv/inet_link.h
===================================================================
--- uspace/srv/net/inetsrv/inet_link.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/inet_link.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,6 @@
 #define INET_LINK_H_
 
-#include <sys/types.h>
+#include <stddef.h>
+#include <stdint.h>
 #include "inetsrv.h"
 
Index: uspace/srv/net/inetsrv/inet_std.h
===================================================================
--- uspace/srv/net/inetsrv/inet_std.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/inet_std.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,5 @@
 #define INET_STD_H_
 
-#include <sys/types.h>
+#include <stdint.h>
 
 #define IP6_NEXT_FRAGMENT  44
Index: uspace/srv/net/inetsrv/inetcfg.c
===================================================================
--- uspace/srv/net/inetsrv/inetcfg.c	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/inetcfg.c	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -43,5 +43,5 @@
 #include <stdlib.h>
 #include <str.h>
-#include <sys/types.h>
+#include <stddef.h>
 #include <types/inetcfg.h>
 
Index: uspace/srv/net/inetsrv/inetping.c
===================================================================
--- uspace/srv/net/inetsrv/inetping.c	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/inetping.c	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -43,5 +43,6 @@
 #include <loc.h>
 #include <stdlib.h>
-#include <sys/types.h>
+#include <stddef.h>
+#include <stdint.h>
 #include <types/inetping.h>
 #include "icmp.h"
Index: uspace/srv/net/inetsrv/inetsrv.c
===================================================================
--- uspace/srv/net/inetsrv/inetsrv.c	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/inetsrv.c	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -45,5 +45,6 @@
 #include <stdio.h>
 #include <stdlib.h>
-#include <sys/types.h>
+#include <stddef.h>
+#include <stdint.h>
 #include <task.h>
 #include "addrobj.h"
Index: uspace/srv/net/inetsrv/inetsrv.h
===================================================================
--- uspace/srv/net/inetsrv/inetsrv.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/inetsrv.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -43,5 +43,6 @@
 #include <inet/iplink.h>
 #include <ipc/loc.h>
-#include <sys/types.h>
+#include <stddef.h>
+#include <stdint.h>
 #include <types/inet.h>
 #include <async.h>
Index: uspace/srv/net/inetsrv/ndp.h
===================================================================
--- uspace/srv/net/inetsrv/ndp.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/ndp.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,4 @@
 #define NDP_H_
 
-#include <sys/types.h>
 #include <inet/addr.h>
 #include "inetsrv.h"
Index: uspace/srv/net/inetsrv/pdu.h
===================================================================
--- uspace/srv/net/inetsrv/pdu.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/pdu.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -39,5 +39,6 @@
 
 #include <loc.h>
-#include <sys/types.h>
+#include <stddef.h>
+#include <stdint.h>
 #include "inetsrv.h"
 #include "ndp.h"
Index: uspace/srv/net/inetsrv/reass.h
===================================================================
--- uspace/srv/net/inetsrv/reass.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/reass.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,4 @@
 #define INET_REASS_H_
 
-#include <sys/types.h>
 #include "inetsrv.h"
 
Index: uspace/srv/net/inetsrv/sroute.h
===================================================================
--- uspace/srv/net/inetsrv/sroute.h	(revision 8ef1c1e8c9cace4c09627b494a40ebd2a135097c)
+++ uspace/srv/net/inetsrv/sroute.h	(revision 8d2dd7f2d52fbc7693f94b66e451eeff3756d061)
@@ -38,5 +38,6 @@
 #define INET_SROUTE_H_
 
-#include <sys/types.h>
+#include <stddef.h>
+#include <stdint.h>
 #include "inetsrv.h"
 
