diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-04-06 02:59:58 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-04-06 02:59:58 +0000 |
commit | cc2e34eaffb7a34b94ac5434e519522d3cda84da (patch) | |
tree | 3f0f5754c999e8f8082f258a7979923241f010ad /sys/arch/mac68k/dev | |
parent | 9452102746aa63930308dee7b6151b7f18093d67 (diff) |
Eradicate #include <sys/*> from machine/*.h. Prompting from Gene.
Diffstat (limited to 'sys/arch/mac68k/dev')
-rw-r--r-- | sys/arch/mac68k/dev/adb.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mac68k/dev/adb.c b/sys/arch/mac68k/dev/adb.c index 30a41769194..db2224f0821 100644 --- a/sys/arch/mac68k/dev/adb.c +++ b/sys/arch/mac68k/dev/adb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adb.c,v 1.8 1997/03/12 13:36:56 briggs Exp $ */ +/* $OpenBSD: adb.c,v 1.9 1997/04/06 02:59:57 briggs Exp $ */ /* $NetBSD: adb.c,v 1.13 1996/12/16 16:17:02 scottr Exp $ */ /*- @@ -34,10 +34,12 @@ e* notice, this list of conditions and the following disclaimer in the #include <sys/param.h> #include <sys/device.h> #include <sys/fcntl.h> +#include <sys/ioctl.h> #include <sys/select.h> #include <sys/proc.h> #include <sys/signalvar.h> #include <sys/systm.h> +#include <sys/time.h> #include <machine/autoconf.h> #include <machine/keyboard.h> |