diff options
author | 2006-07-25 02:59:21 +0000 | |
---|---|---|
committer | 2006-07-25 02:59:21 +0000 | |
commit | b759de88a5733c8d9b817e7fe3bf30a05bb07b8f (patch) | |
tree | 8c38e426f358d776bbb2c5dc7c4bdc63679c7b08 /usr.bin/ssh/serverloop.c | |
parent | sync (diff) | |
download | wireguard-openbsd-b759de88a5733c8d9b817e7fe3bf30a05bb07b8f.tar.xz wireguard-openbsd-b759de88a5733c8d9b817e7fe3bf30a05bb07b8f.zip |
move #include <sys/time.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index bf4d53adc0f..28bf8e9fe23 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.141 2006/07/22 20:48:23 stevesk Exp $ */ +/* $OpenBSD: serverloop.c,v 1.142 2006/07/25 02:59:21 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -40,6 +40,7 @@ #include <sys/types.h> #include <sys/wait.h> #include <sys/socket.h> +#include <sys/time.h> #include <netinet/in.h> |