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/crypto | |
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/crypto')
-rw-r--r-- | sys/crypto/cryptodev.c | 3 | ||||
-rw-r--r-- | sys/crypto/cryptosoft.c | 3 | ||||
-rw-r--r-- | sys/crypto/xform.c | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/sys/crypto/cryptodev.c b/sys/crypto/cryptodev.c index 5a86590e8f0..b76218bc09d 100644 --- a/sys/crypto/cryptodev.c +++ b/sys/crypto/cryptodev.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptodev.c,v 1.70 2009/02/17 19:16:26 deraadt Exp $ */ +/* $OpenBSD: cryptodev.c,v 1.71 2010/04/20 22:05:41 tedu Exp $ */ /* * Copyright (c) 2001 Theo de Raadt @@ -34,7 +34,6 @@ #include <sys/systm.h> #include <sys/malloc.h> #include <sys/mbuf.h> -#include <sys/sysctl.h> #include <sys/file.h> #include <sys/filedesc.h> #include <sys/errno.h> diff --git a/sys/crypto/cryptosoft.c b/sys/crypto/cryptosoft.c index e392747d7c5..b5627b84ad3 100644 --- a/sys/crypto/cryptosoft.c +++ b/sys/crypto/cryptosoft.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cryptosoft.c,v 1.52 2010/01/10 12:43:07 markus Exp $ */ +/* $OpenBSD: cryptosoft.c,v 1.53 2010/04/20 22:05:41 tedu Exp $ */ /* * The author of this code is Angelos D. Keromytis (angelos@cis.upenn.edu) @@ -25,7 +25,6 @@ #include <sys/systm.h> #include <sys/malloc.h> #include <sys/mbuf.h> -#include <sys/sysctl.h> #include <sys/errno.h> #include <dev/rndvar.h> #include <crypto/md5.h> diff --git a/sys/crypto/xform.c b/sys/crypto/xform.c index dd5bb9aa054..437e9ea8844 100644 --- a/sys/crypto/xform.c +++ b/sys/crypto/xform.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xform.c,v 1.37 2010/01/10 12:43:07 markus Exp $ */ +/* $OpenBSD: xform.c,v 1.38 2010/04/20 22:05:41 tedu Exp $ */ /* * The authors of this code are John Ioannidis (ji@tla.org), * Angelos D. Keromytis (kermit@csd.uch.gr), @@ -44,7 +44,6 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> -#include <sys/sysctl.h> #include <sys/errno.h> #include <sys/time.h> #include <sys/kernel.h> |