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/readconf.c | |
parent | 6626e2fe6d63bc4f09f17b2f0cf8c7889efce808 (diff) |
move #include <unistd.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/readconf.c')
-rw-r--r-- | usr.bin/ssh/readconf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 34d11088a7f..c679ad9446d 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.155 2006/07/12 22:28:52 stevesk Exp $ */ +/* $OpenBSD: readconf.c,v 1.156 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 @@ -23,6 +23,7 @@ #include <ctype.h> #include <errno.h> #include <netdb.h> +#include <unistd.h> #include "ssh.h" #include "xmalloc.h" |