diff options
author | 2014-11-18 02:37:30 +0000 | |
---|---|---|
committer | 2014-11-18 02:37:30 +0000 | |
commit | 3811cf15477e5083ff6e2c60e3187468dc508d8e (patch) | |
tree | 98fa2e01248e476c34f6114c7592e6b2312859af /sys/kern/kern_malloc.c | |
parent | include systm.h for arc4random now (diff) | |
download | wireguard-openbsd-3811cf15477e5083ff6e2c60e3187468dc508d8e.tar.xz wireguard-openbsd-3811cf15477e5083ff6e2c60e3187468dc508d8e.zip |
move arc4random prototype to systm.h. more appropriate for most code
to include that than rdnvar.h. ok deraadt dlg
Diffstat (limited to 'sys/kern/kern_malloc.c')
-rw-r--r-- | sys/kern/kern_malloc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c index a7d48d5c3b0..286843b0ad2 100644 --- a/sys/kern/kern_malloc.c +++ b/sys/kern/kern_malloc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_malloc.c,v 1.124 2014/11/16 12:31:00 deraadt Exp $ */ +/* $OpenBSD: kern_malloc.c,v 1.125 2014/11/18 02:37:31 tedu Exp $ */ /* $NetBSD: kern_malloc.c,v 1.15.4.2 1996/06/13 17:10:56 cgd Exp $ */ /* @@ -40,8 +40,6 @@ #include <sys/time.h> #include <sys/rwlock.h> -#include <dev/rndvar.h> - #include <uvm/uvm_extern.h> static |