summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2005-05-27 04:14:25 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2005-05-27 04:14:25 +0000
commitbfb8c3382606ac2793e20d4cd61666979262dfbc (patch)
treeddb799613394387051168b7d04454965e3a9fefa
parent0ad0d3638f6ef0319b6d344ba9b7cceaf67e351d (diff)
include sys/time.h to get struct timeval
-rw-r--r--bin/dd/misc.c5
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>