summaryrefslogtreecommitdiffstats
path: root/freebsd/sys/crypto
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/sys/crypto
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/sys/crypto')
-rw-r--r--freebsd/sys/crypto/blowfish/bf_skey.c2
-rw-r--r--freebsd/sys/crypto/sha1.c2
-rw-r--r--freebsd/sys/crypto/sha2/sha2.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/freebsd/sys/crypto/blowfish/bf_skey.c b/freebsd/sys/crypto/blowfish/bf_skey.c
index a396d879..7cff4744 100644
--- a/freebsd/sys/crypto/blowfish/bf_skey.c
+++ b/freebsd/sys/crypto/blowfish/bf_skey.c
@@ -65,7 +65,7 @@
__FBSDID("$FreeBSD$");
#include <rtems/bsd/sys/types.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <sys/systm.h>
#include <crypto/blowfish/blowfish.h>
#include <crypto/blowfish/bf_locl.h>
diff --git a/freebsd/sys/crypto/sha1.c b/freebsd/sys/crypto/sha1.c
index f2c5330f..0fc2de3f 100644
--- a/freebsd/sys/crypto/sha1.c
+++ b/freebsd/sys/crypto/sha1.c
@@ -41,7 +41,7 @@ __FBSDID("$FreeBSD$");
#include <rtems/bsd/sys/types.h>
#include <sys/cdefs.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#include <sys/systm.h>
#include <crypto/sha1.h>
diff --git a/freebsd/sys/crypto/sha2/sha2.c b/freebsd/sys/crypto/sha2/sha2.c
index acabc958..8a482f54 100644
--- a/freebsd/sys/crypto/sha2/sha2.c
+++ b/freebsd/sys/crypto/sha2/sha2.c
@@ -40,7 +40,7 @@
__FBSDID("$FreeBSD$");
#include <rtems/bsd/sys/types.h>
-#include <rtems/bsd/sys/time.h>
+#include <sys/time.h>
#ifdef _KERNEL
#include <sys/systm.h>
#else