diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-02-20 17:19:55 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-02-20 17:19:55 +0000 |
commit | 349f55648639c727914febc82c97fe73470ac0b0 (patch) | |
tree | b0b74a2bd56d4f19d633a9549e2f1d02d2cd5660 /usr.bin/ssh/sftp-common.c | |
parent | cc22698e3d08fa9f43bbb8637f9ae25ed57afa02 (diff) |
move #include <sys/stat.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/sftp-common.c')
-rw-r--r-- | usr.bin/ssh/sftp-common.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/sftp-common.c b/usr.bin/ssh/sftp-common.c index 4cea3c3056a..aa0757561a3 100644 --- a/usr.bin/ssh/sftp-common.c +++ b/usr.bin/ssh/sftp-common.c @@ -24,7 +24,10 @@ */ #include "includes.h" -RCSID("$OpenBSD: sftp-common.c,v 1.10 2003/11/10 16:23:41 jakob Exp $"); +RCSID("$OpenBSD: sftp-common.c,v 1.11 2006/02/20 17:19:54 stevesk Exp $"); + +#include <sys/types.h> +#include <sys/stat.h> #include "buffer.h" #include "bufaux.h" |