diff options
author | 2006-07-09 15:15:10 +0000 | |
---|---|---|
committer | 2006-07-09 15:15:10 +0000 | |
commit | 089803ec38bc406458d7a22bd9f3c76b2270cf3f (patch) | |
tree | 8512763198790fa16a0a897b457b37dd451fcb57 /usr.bin/ssh/ssh-add.c | |
parent | Use sigaction() instead of signal() in the parent and use the (diff) | |
download | wireguard-openbsd-089803ec38bc406458d7a22bd9f3c76b2270cf3f.tar.xz wireguard-openbsd-089803ec38bc406458d7a22bd9f3c76b2270cf3f.zip |
move #include <fcntl.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 00d4d8293aa..1a594fab952 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.81 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: ssh-add.c,v 1.82 2006/07/09 15:15:11 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -42,6 +42,7 @@ #include <openssl/evp.h> +#include <fcntl.h> #include <pwd.h> #include "ssh.h" |