diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-27 04:05:13 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2016-08-27 04:05:13 +0000 |
commit | b800ce0bd53e241c2ffa6dae18d6f21b675cd83f (patch) | |
tree | c8b1d54f201a92a89a01f396ef7f6e8e3e164b78 /usr.bin/ssh | |
parent | b5ab6db1d995309d3e03b45c5780c7748ed0cd6b (diff) |
Pull in <sys/time.h> for struct timeval
ok deraadt@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/misc.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/misc.h b/usr.bin/ssh/misc.h index c6b919b0849..f7f54d7c021 100644 --- a/usr.bin/ssh/misc.h +++ b/usr.bin/ssh/misc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.57 2016/07/15 00:24:30 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.58 2016/08/27 04:05:12 guenther Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -15,6 +15,8 @@ #ifndef _MISC_H #define _MISC_H +#include <sys/time.h> + /* Data structure for representing a forwarding request. */ struct Forward { char *listen_host; /* Host (address) to listen on. */ |