diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 05:01:29 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 05:01:29 +0000 |
commit | 7247b565e66aa507f7d545dce8e3b3b6a2dc7b12 (patch) | |
tree | 8d85a6b49b9c7c5fb9b057031971677b9985e8c7 /usr.sbin/wsconscfg | |
parent | 4470f6d571b57a867ad4f7875ea2cd7f46612f98 (diff) |
include sys/time.h to get struct timeval
Diffstat (limited to 'usr.sbin/wsconscfg')
-rw-r--r-- | usr.sbin/wsconscfg/wsconscfg.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/wsconscfg/wsconscfg.c b/usr.sbin/wsconscfg/wsconscfg.c index 03bb7b0d7d4..f83b8bbb9d6 100644 --- a/usr.sbin/wsconscfg/wsconscfg.c +++ b/usr.sbin/wsconscfg/wsconscfg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconscfg.c,v 1.11 2004/08/01 18:32:21 deraadt Exp $ */ +/* $OpenBSD: wsconscfg.c,v 1.12 2005/05/27 05:01:28 millert Exp $ */ /* $NetBSD: wsconscfg.c,v 1.4 1999/07/29 18:24:10 augustss Exp $ */ /* @@ -33,13 +33,15 @@ * */ +#include <sys/types.h> +#include <sys/time.h> +#include <sys/ioctl.h> + #include <stdio.h> #include <stdlib.h> #include <string.h> #include <fcntl.h> #include <unistd.h> -#include <sys/types.h> -#include <sys/ioctl.h> #include <err.h> #include <errno.h> |