diff options
author | 2006-10-06 02:29:19 +0000 | |
---|---|---|
committer | 2006-10-06 02:29:19 +0000 | |
commit | 302025e6dbbba8a6a59a9bff09d7c3c03d23e605 (patch) | |
tree | a66f83f67e5d56b3e327c44629c24cc83faf29af /usr.bin/ssh/ssh.c | |
parent | move Hitachi to the right position (numerical order). (diff) | |
download | wireguard-openbsd-302025e6dbbba8a6a59a9bff09d7c3c03d23e605.tar.xz wireguard-openbsd-302025e6dbbba8a6a59a9bff09d7c3c03d23e605.zip |
sys/resource.h needs sys/time.h; prompted by brad@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 82dc82a0a05..d33c3435466 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.293 2006/08/03 03:34:42 deraadt Exp $ */ +/* $OpenBSD: ssh.c,v 1.294 2006/10/06 02:29:19 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -41,6 +41,7 @@ */ #include <sys/types.h> +#include <sys/time.h> #include <sys/resource.h> #include <sys/ioctl.h> #include <sys/types.h> |