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/tty.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/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" |