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-add.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-add.c')
-rw-r--r-- | usr.bin/ssh/ssh-add.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-add.c b/usr.bin/ssh/ssh-add.c index 3b6c330f4c4..e0441a507f7 100644 --- a/usr.bin/ssh/ssh-add.c +++ b/usr.bin/ssh/ssh-add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-add.c,v 1.83 2006/07/09 15:27:59 stevesk Exp $ */ +/* $OpenBSD: ssh-add.c,v 1.84 2006/07/17 01:31:09 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -44,6 +44,7 @@ #include <fcntl.h> #include <pwd.h> +#include <unistd.h> #include "ssh.h" #include "rsa.h" |