diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 04:14:25 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-05-27 04:14:25 +0000 |
commit | bfb8c3382606ac2793e20d4cd61666979262dfbc (patch) | |
tree | ddb799613394387051168b7d04454965e3a9fefa | |
parent | 0ad0d3638f6ef0319b6d344ba9b7cceaf67e351d (diff) |
include sys/time.h to get struct timeval
-rw-r--r-- | bin/dd/misc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/dd/misc.c b/bin/dd/misc.c index 31111d06492..2711ad62b23 100644 --- a/bin/dd/misc.c +++ b/bin/dd/misc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.c,v 1.13 2003/06/11 23:42:12 deraadt Exp $ */ +/* $OpenBSD: misc.c,v 1.14 2005/05/27 04:14:24 millert Exp $ */ /* $NetBSD: misc.c,v 1.4 1995/03/21 09:04:10 cgd Exp $ */ /*- @@ -38,11 +38,12 @@ #if 0 static char sccsid[] = "@(#)misc.c 8.3 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: misc.c,v 1.13 2003/06/11 23:42:12 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: misc.c,v 1.14 2005/05/27 04:14:24 millert Exp $"; #endif #endif /* not lint */ #include <sys/types.h> +#include <sys/time.h> #include <sys/uio.h> #include <err.h> |