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/auth-rsa.c | |
parent | cc22698e3d08fa9f43bbb8637f9ae25ed57afa02 (diff) |
move #include <sys/stat.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/auth-rsa.c')
-rw-r--r-- | usr.bin/ssh/auth-rsa.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth-rsa.c b/usr.bin/ssh/auth-rsa.c index d9c9652dc71..275c0b67b14 100644 --- a/usr.bin/ssh/auth-rsa.c +++ b/usr.bin/ssh/auth-rsa.c @@ -14,7 +14,10 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-rsa.c,v 1.63 2005/06/17 02:44:32 djm Exp $"); +RCSID("$OpenBSD: auth-rsa.c,v 1.64 2006/02/20 17:19:53 stevesk Exp $"); + +#include <sys/types.h> +#include <sys/stat.h> #include <openssl/rsa.h> #include <openssl/md5.h> |