diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2010-07-02 15:47:59 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2010-07-02 15:47:59 +0000 |
commit | ef5674285aba058e036a11279415a3892ab27cd0 (patch) | |
tree | f134cffcbe73eed1d746b34f97540139b696b56e | |
parent | a4abcea58c453037f43c823cf01e7fff298aae56 (diff) |
add missing header needed by ioctl()
ok maja@
-rw-r--r-- | sbin/wsconsctl/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/wsconsctl/util.c b/sbin/wsconsctl/util.c index 3b4bbb1766f..22e9746c525 100644 --- a/sbin/wsconsctl/util.c +++ b/sbin/wsconsctl/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.52 2010/07/01 03:00:14 maja Exp $ */ +/* $OpenBSD: util.c,v 1.53 2010/07/02 15:47:58 chl Exp $ */ /* $NetBSD: util.c,v 1.8 2000/03/14 08:11:53 sato Exp $ */ /*- @@ -30,6 +30,7 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <sys/ioctl.h> #include <sys/time.h> #include <dev/wscons/wsconsio.h> #include <dev/wscons/wsksymdef.h> |