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/authfile.c | |
parent | 6626e2fe6d63bc4f09f17b2f0cf8c7889efce808 (diff) |
move #include <unistd.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r-- | usr.bin/ssh/authfile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index 0ab4ccebf50..c246465ec32 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfile.c,v 1.69 2006/07/11 20:27:56 stevesk Exp $ */ +/* $OpenBSD: authfile.c,v 1.70 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 @@ -47,6 +47,7 @@ #include <errno.h> #include <fcntl.h> +#include <unistd.h> #include "cipher.h" #include "xmalloc.h" |