diff options
author | 2005-05-27 04:14:24 +0000 | |
---|---|---|
committer | 2005-05-27 04:14:24 +0000 | |
commit | 35fbec4f957fc74aeceb707916200c5fbe48d31e (patch) | |
tree | bf7321ca370d71eca9033fd11db528c973e65f47 | |
parent | - disable the gpio user interface for now, it's just an unimportant (diff) | |
download | wireguard-openbsd-35fbec4f957fc74aeceb707916200c5fbe48d31e.tar.xz wireguard-openbsd-35fbec4f957fc74aeceb707916200c5fbe48d31e.zip |
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> |