diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-11 20:07:26 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-11 20:07:26 +0000 |
commit | 740e1f5357744919283fb440711e803850c19812 (patch) | |
tree | 375bf64c6449c74dd00b5940e5d3354566b23a89 /usr.bin/ssh/sftp.c | |
parent | 89a7db6727edf8cd68c273e20f8d77bd39dba6ef (diff) |
move #include <errno.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/sftp.c')
-rw-r--r-- | usr.bin/ssh/sftp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c index 83076df47f4..21717c6fb24 100644 --- a/usr.bin/ssh/sftp.c +++ b/usr.bin/ssh/sftp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.84 2006/07/10 16:01:57 stevesk Exp $ */ +/* $OpenBSD: sftp.c,v 1.85 2006/07/11 20:07:25 stevesk Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -23,6 +23,7 @@ #include <sys/stat.h> #include <sys/socket.h> +#include <errno.h> #include <glob.h> #include <histedit.h> #include <paths.h> |