diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 05:03:48 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 05:03:48 +0000 |
commit | e1828cccc43dbb1ad6f856afd685a2ecef3d9fa0 (patch) | |
tree | 1961f47bbbf9ec04aa90f27c22dfe0f0832aeb51 /usr.sbin | |
parent | 7247b565e66aa507f7d545dce8e3b3b6a2dc7b12 (diff) |
include sys/time.h to get struct timeval
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/wsfontload/wsfontload.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/wsfontload/wsfontload.c b/usr.sbin/wsfontload/wsfontload.c index 3a4764141b4..9ce6ed72013 100644 --- a/usr.sbin/wsfontload/wsfontload.c +++ b/usr.sbin/wsfontload/wsfontload.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsfontload.c,v 1.9 2004/08/03 09:45:29 jmc Exp $ */ +/* $OpenBSD: wsfontload.c,v 1.10 2005/05/27 05:03:47 millert Exp $ */ /* $NetBSD: wsfontload.c,v 1.2 2000/01/05 18:46:43 ad Exp $ */ /* @@ -33,12 +33,14 @@ * */ +#include <sys/types.h> +#include <sys/time.h> +#include <sys/ioctl.h> + #include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <unistd.h> -#include <sys/types.h> -#include <sys/ioctl.h> #include <string.h> #include <err.h> |