summaryrefslogtreecommitdiffstats
path: root/freebsd/sbin
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-07 09:48:12 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-05-30 16:06:41 +0200
commit2017a6df2b7e4edd6cc6eef585b605290431ce5b (patch)
tree13fc7b337f6fb233ea5b06b4a2e77d27f02a6678 /freebsd/sbin
parentrtems-bsd-rc-conf.h: Add missing include (diff)
downloadrtems-libbsd-2017a6df2b7e4edd6cc6eef585b605290431ce5b.tar.bz2
Directly use <sys/time.h> provided by Newlib
Diffstat (limited to 'freebsd/sbin')
-rw-r--r--freebsd/sbin/dhclient/dhcpd.h2
-rw-r--r--freebsd/sbin/ifconfig/ifconfig.c2
-rw-r--r--freebsd/sbin/ifconfig/ifieee80211.c2
-rw-r--r--freebsd/sbin/ifconfig/ifmedia.c2
-rw-r--r--freebsd/sbin/ping/ping.c2
-rw-r--r--freebsd/sbin/ping6/ping6.c2
-rw-r--r--freebsd/sbin/sysctl/sysctl.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/freebsd/sbin/dhclient/dhcpd.h b/freebsd/sbin/dhclient/dhcpd.h
index d7844bc6..030a96a0 100644
--- a/freebsd/sbin/dhclient/dhcpd.h
+++ b/freebsd/sbin/dhclient/dhcpd.h
@@ -46,7 +46,7 @@
#include <sys/socket.h>
#include <sys/sockio.h>
#include <sys/stat.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <sys/un.h>
#include <sys/wait.h>
diff --git a/freebsd/sbin/ifconfig/ifconfig.c b/freebsd/sbin/ifconfig/ifconfig.c
index 8fc53f6f..0bfc529d 100644
--- a/freebsd/sbin/ifconfig/ifconfig.c
+++ b/freebsd/sbin/ifconfig/ifconfig.c
@@ -54,7 +54,7 @@ static const char rcsid[] =
#include <rtems/bsd/sys/param.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <sys/module.h>
#include <sys/linker.h>
diff --git a/freebsd/sbin/ifconfig/ifieee80211.c b/freebsd/sbin/ifconfig/ifieee80211.c
index 4647317c..29b49a5b 100644
--- a/freebsd/sbin/ifconfig/ifieee80211.c
+++ b/freebsd/sbin/ifconfig/ifieee80211.c
@@ -68,7 +68,7 @@
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/sysctl.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <net/ethernet.h>
#include <net/if.h>
diff --git a/freebsd/sbin/ifconfig/ifmedia.c b/freebsd/sbin/ifconfig/ifmedia.c
index 0ad008ee..ba029cb4 100644
--- a/freebsd/sbin/ifconfig/ifmedia.c
+++ b/freebsd/sbin/ifconfig/ifmedia.c
@@ -68,7 +68,7 @@
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/sysctl.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <net/if.h>
#include <net/if_dl.h>
diff --git a/freebsd/sbin/ping/ping.c b/freebsd/sbin/ping/ping.c
index 7f0a2297..0bfd3f57 100644
--- a/freebsd/sbin/ping/ping.c
+++ b/freebsd/sbin/ping/ping.c
@@ -73,7 +73,7 @@ __FBSDID("$FreeBSD$");
#include <rtems/bsd/sys/param.h> /* NB: we rely on this for <sys/types.h> */
#include <sys/socket.h>
#include <sys/sysctl.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <sys/uio.h>
#include <netinet/in.h>
diff --git a/freebsd/sbin/ping6/ping6.c b/freebsd/sbin/ping6/ping6.c
index 2067b54b..704b4555 100644
--- a/freebsd/sbin/ping6/ping6.c
+++ b/freebsd/sbin/ping6/ping6.c
@@ -115,7 +115,7 @@ __FBSDID("$FreeBSD$");
#include <rtems/bsd/sys/param.h>
#include <sys/uio.h>
#include <sys/socket.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <net/if.h>
#include <net/route.h>
diff --git a/freebsd/sbin/sysctl/sysctl.c b/freebsd/sbin/sysctl/sysctl.c
index 9d7a8692..96b1c912 100644
--- a/freebsd/sbin/sysctl/sysctl.c
+++ b/freebsd/sbin/sysctl/sysctl.c
@@ -50,7 +50,7 @@ static const char rcsid[] =
#endif /* __rtems__ */
#include <rtems/bsd/sys/param.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <rtems/bsd/sys/resource.h>
#include <sys/stat.h>
#include <sys/sysctl.h>