diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2013-10-29 04:34:22 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2013-10-29 04:34:22 +0000 |
commit | b4d86627276260cfe3742e11c87ef85a80545c68 (patch) | |
tree | a54a013f2af0842ca25cf623de594d57f02fe6bd /sys/kern | |
parent | 26eb3e31190fc9b2c145f8d689cca6b8327b96f1 (diff) |
sys/task.h includes sys/queue.h, so kern/kern_task.c doesnt need
to do that again.
kern/kern_task.c doesnt use pools so we dont need sys/pool.h either.
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/kern_task.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/kern/kern_task.c b/sys/kern/kern_task.c index 83c8b43643f..ea10643ec7c 100644 --- a/sys/kern/kern_task.c +++ b/sys/kern/kern_task.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_task.c,v 1.2 2013/10/29 04:32:08 dlg Exp $ */ +/* $OpenBSD: kern_task.c,v 1.3 2013/10/29 04:34:21 dlg Exp $ */ /* * Copyright (c) 2013 David Gwynne <dlg@openbsd.org> @@ -19,8 +19,6 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/malloc.h> -#include <sys/pool.h> -#include <sys/queue.h> #include <sys/mutex.h> #include <sys/kthread.h> #include <sys/task.h> |