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/kern/kern_tc.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/kern/kern_tc.c')
-rw-r--r-- | sys/kern/kern_tc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c index 55d8d70fbf5..25f987ac195 100644 --- a/sys/kern/kern_tc.c +++ b/sys/kern/kern_tc.c @@ -6,12 +6,13 @@ * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * - * $OpenBSD: kern_tc.c,v 1.13 2010/01/14 23:12:11 schwarze Exp $ + * $OpenBSD: kern_tc.c,v 1.14 2010/04/20 22:05:43 tedu Exp $ * $FreeBSD: src/sys/kern/kern_tc.c,v 1.148 2003/03/18 08:45:23 phk Exp $ */ #include <sys/param.h> #include <sys/kernel.h> +#include <sys/proc.h> #include <sys/sysctl.h> #include <sys/syslog.h> #include <sys/systm.h> |