summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2013-10-29 04:34:22 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2013-10-29 04:34:22 +0000
commitb4d86627276260cfe3742e11c87ef85a80545c68 (patch)
treea54a013f2af0842ca25cf623de594d57f02fe6bd /sys
parent26eb3e31190fc9b2c145f8d689cca6b8327b96f1 (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')
-rw-r--r--sys/kern/kern_task.c4
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>