diff options
author | 2020-05-29 04:42:23 +0000 | |
---|---|---|
committer | 2020-05-29 04:42:23 +0000 | |
commit | c8f27247b9f5f282483daaddbfd1267ad73569c5 (patch) | |
tree | 6d0e42177fede279db31615833f24222d49ecf99 /sys/kern/subr_disk.c | |
parent | Add regression and unit tests for ${ENV} style environment variable (diff) | |
download | wireguard-openbsd-c8f27247b9f5f282483daaddbfd1267ad73569c5.tar.xz wireguard-openbsd-c8f27247b9f5f282483daaddbfd1267ad73569c5.zip |
dev/rndvar.h no longer has statistical interfaces (removed during various
conversion steps). it only contains kernel prototypes for 4 interfaces,
all of which legitimately belong in sys/systm.h, which are already included
by all enqueue_randomness() users.
Diffstat (limited to 'sys/kern/subr_disk.c')
-rw-r--r-- | sys/kern/subr_disk.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/subr_disk.c b/sys/kern/subr_disk.c index b676e74a71b..e73d5092d7e 100644 --- a/sys/kern/subr_disk.c +++ b/sys/kern/subr_disk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_disk.c,v 1.236 2020/03/13 09:30:22 mpi Exp $ */ +/* $OpenBSD: subr_disk.c,v 1.237 2020/05/29 04:42:25 deraadt Exp $ */ /* $NetBSD: subr_disk.c,v 1.17 1996/03/16 23:17:08 christos Exp $ */ /* @@ -63,7 +63,6 @@ #include <net/if.h> -#include <dev/rndvar.h> #include <dev/cons.h> #include <lib/libz/zlib.h> |