diff options
author | 2006-07-17 01:31:09 +0000 | |
---|---|---|
committer | 2006-07-17 01:31:09 +0000 | |
commit | eb2751a22d6728146140c132c9aa405419f63e4b (patch) | |
tree | 040c6046972d8088cc81a795efd16dc8cc66b53b /usr.bin/ssh/ssh.c | |
parent | Fix splassert false positives on older VAXstation with devices wired to (diff) | |
download | wireguard-openbsd-eb2751a22d6728146140c132c9aa405419f63e4b.tar.xz wireguard-openbsd-eb2751a22d6728146140c132c9aa405419f63e4b.zip |
move #include <unistd.h> out of includes.h
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 b88532b5b60..7c1ad341485 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.287 2006/07/12 22:42:32 stevesk Exp $ */ +/* $OpenBSD: ssh.c,v 1.288 2006/07/17 01:31:10 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -57,6 +57,7 @@ #include <pwd.h> #include <signal.h> #include <stddef.h> +#include <unistd.h> #include <openssl/evp.h> #include <openssl/err.h> |