diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-05-18 04:41:15 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-05-18 04:41:15 +0000 |
commit | 2a8c476cc299b5156f773ee5184486606637e917 (patch) | |
tree | 30e6afac5430b625bb13529ef5157accc51637d9 /sbin/newfs_msdos | |
parent | 5f7844d39f199b58e0025efc5d45e6ab79446132 (diff) |
dont let sys/ioctl.h imply that you get the ioctls in dkio.h. this
gets rid of #include <sys/dkio.h> in sys/ioctl.h and adds #include
<sys/dkio.h> to the places that actually want and use the disk
ioctls.
this became an issue when krw@'s X build failed when he was testing
a change to dkio.h.
tested by krw@
help from and ok miod@
Diffstat (limited to 'sbin/newfs_msdos')
-rw-r--r-- | sbin/newfs_msdos/newfs_msdos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/newfs_msdos/newfs_msdos.c b/sbin/newfs_msdos/newfs_msdos.c index cdbb7ae98ef..c8a4731c76c 100644 --- a/sbin/newfs_msdos/newfs_msdos.c +++ b/sbin/newfs_msdos/newfs_msdos.c @@ -1,4 +1,4 @@ -/* $OpenBSD: newfs_msdos.c,v 1.19 2009/10/27 23:59:33 deraadt Exp $ */ +/* $OpenBSD: newfs_msdos.c,v 1.20 2010/05/18 04:41:14 dlg Exp $ */ /* * Copyright (c) 1998 Robert Nordier @@ -31,6 +31,7 @@ #include <sys/stat.h> #include <sys/disklabel.h> #include <sys/ioctl.h> +#include <sys/dkio.h> #include <sys/mount.h> #include <ctype.h> |