diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-29 04:42:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-05-29 04:42:26 +0000 |
commit | 7306560e7b6cab75131568161d847ba0bcebbeeb (patch) | |
tree | aff365fd9c4851785ea0abf5f58a3be7aaf230db /sys/kern/tty.c | |
parent | fb3a8770b87c531b1cffd1a144a9eacba40dcd9f (diff) |
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/tty.c')
-rw-r--r-- | sys/kern/tty.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index e9f98f87e01..738ca2698df 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.155 2020/05/08 07:31:46 mpi Exp $ */ +/* $OpenBSD: tty.c,v 1.156 2020/05/29 04:42:25 deraadt Exp $ */ /* $NetBSD: tty.c,v 1.68.4.2 1996/06/06 16:04:52 thorpej Exp $ */ /*- @@ -66,7 +66,6 @@ #include <uvm/uvm_extern.h> #include <dev/cons.h> -#include <dev/rndvar.h> #include "pty.h" |