diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-17 01:31:11 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-17 01:31:11 +0000 |
commit | d659fd7d8b8c4a47fcabe16b76f0221c7bf05757 (patch) | |
tree | f1753975c5db250478d9aaa278c4d6a1ec3115ab /usr.bin/ssh/authfd.c | |
parent | 6626e2fe6d63bc4f09f17b2f0cf8c7889efce808 (diff) |
move #include <unistd.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/authfd.c')
-rw-r--r-- | usr.bin/ssh/authfd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfd.c b/usr.bin/ssh/authfd.c index 5cec7a97c15..f8b7ed71fa4 100644 --- a/usr.bin/ssh/authfd.c +++ b/usr.bin/ssh/authfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.76 2006/07/09 15:15:10 stevesk Exp $ */ +/* $OpenBSD: authfd.c,v 1.77 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 <openssl/evp.h> #include <fcntl.h> +#include <unistd.h> #include "ssh.h" #include "rsa.h" |