summaryrefslogtreecommitdiff
path: root/sys/dev/random
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>2000-06-26 12:14:20 +0000
committerMark Murray <markm@FreeBSD.org>2000-06-26 12:14:20 +0000
commitd4262fb0dd2fa97d07f808cf3ab38ea47edf5bd3 (patch)
tree6672531512a0827190142e4a03195efe67fcdb7d /sys/dev/random
parent608677bb6edc5dd1c846e9a1f79d25fed8105b18 (diff)
Notes
Diffstat (limited to 'sys/dev/random')
-rw-r--r--sys/dev/random/randomdev.c2
-rw-r--r--sys/dev/random/yarrow.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/random/randomdev.c b/sys/dev/random/randomdev.c
index badd7ca69839..1bea030b657f 100644
--- a/sys/dev/random/randomdev.c
+++ b/sys/dev/random/randomdev.c
@@ -44,7 +44,7 @@
#include <sys/sysctl.h>
#include <crypto/blowfish/blowfish.h>
-#include "dev/randomdev/yarrow.h"
+#include <dev/randomdev/yarrow.h>
static d_read_t randomread;
static d_write_t randomwrite;
diff --git a/sys/dev/random/yarrow.c b/sys/dev/random/yarrow.c
index 0324e4dc33a1..b54951b48a44 100644
--- a/sys/dev/random/yarrow.c
+++ b/sys/dev/random/yarrow.c
@@ -39,7 +39,7 @@
#include <sys/types.h>
#include <crypto/blowfish/blowfish.h>
-#include "dev/randomdev/yarrow.h"
+#include <dev/randomdev/yarrow.h>
void generator_gate(void);
void reseed(void);