diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2010-04-20 22:05:45 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2010-04-20 22:05:45 +0000 |
commit | db10abfb640a50974a18e7061ec7790337b03345 (patch) | |
tree | fa36581e05f4028667b2e8de73179d482314e768 /sys/dev/rnd.c | |
parent | 0ae0e081f1d14c8b45bec997d2a96673cc9f8f7b (diff) |
remove proc.h include from uvm_map.h. This has far reaching effects, as
sysctl.h was reliant on this particular include, and many drivers included
sysctl.h unnecessarily. remove sysctl.h or add proc.h as needed.
ok deraadt
Diffstat (limited to 'sys/dev/rnd.c')
-rw-r--r-- | sys/dev/rnd.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/rnd.c b/sys/dev/rnd.c index 25c8e8ff9fc..02d717cf1f1 100644 --- a/sys/dev/rnd.c +++ b/sys/dev/rnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rnd.c,v 1.101 2009/11/09 17:53:39 nicm Exp $ */ +/* $OpenBSD: rnd.c,v 1.102 2010/04/20 22:05:41 tedu Exp $ */ /* * rnd.c -- A strong random number generator @@ -247,7 +247,6 @@ #include <sys/malloc.h> #include <sys/fcntl.h> #include <sys/vnode.h> -#include <sys/sysctl.h> #include <sys/timeout.h> #include <sys/poll.h> #include <sys/mutex.h> |