summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2010-05-25 01:59:13 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2010-05-25 01:59:13 +0000
commitcc05550f3e925b82a43c65089b1b0d354f39f3fa (patch)
tree789f086901a54413fd583bb9b55f1828ab4e0b68 /sys/arch
parentc252af6da39bdbb7eacfd2c78e168800f6c750b1 (diff)
fix includes; fallout from the proc.h changes
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/mac68k/dev/asc.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/arch/mac68k/dev/asc.c b/sys/arch/mac68k/dev/asc.c
index cc4e9a16728..bdaf9638c16 100644
--- a/sys/arch/mac68k/dev/asc.c
+++ b/sys/arch/mac68k/dev/asc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: asc.c,v 1.26 2009/03/29 21:53:52 sthen Exp $ */
+/* $OpenBSD: asc.c,v 1.27 2010/05/25 01:59:12 deraadt Exp $ */
/* $NetBSD: asc.c,v 1.20 1997/02/24 05:47:33 scottr Exp $ */
/*
@@ -64,12 +64,11 @@
* ASC driver code and console bell support
*/
-#include <sys/types.h>
-#include <sys/cdefs.h>
+#include <sys/param.h>
+#include <sys/proc.h>
+#include <sys/systm.h>
#include <sys/errno.h>
#include <sys/time.h>
-#include <sys/systm.h>
-#include <sys/param.h>
#include <sys/device.h>
#include <sys/fcntl.h>
#include <sys/poll.h>