diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:15:12 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:15:12 +0000 |
commit | 0810117b8375d88af0d02ded172dacc19d88c6cf (patch) | |
tree | 359c3536690cb16962f43ed17fdfc9d8e8c5bba4 /usr.bin/ssh/authfd.c | |
parent | 9e854c8465a5d4078ce824c4c519af429c8f71cb (diff) |
move #include <fcntl.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/authfd.c')
-rw-r--r-- | usr.bin/ssh/authfd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfd.c b/usr.bin/ssh/authfd.c index 0d2b09ecc97..5cec7a97c15 100644 --- a/usr.bin/ssh/authfd.c +++ b/usr.bin/ssh/authfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.75 2006/07/08 21:47:12 stevesk Exp $ */ +/* $OpenBSD: authfd.c,v 1.76 2006/07/09 15:15:10 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -43,6 +43,8 @@ #include <openssl/evp.h> +#include <fcntl.h> + #include "ssh.h" #include "rsa.h" #include "buffer.h" |