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.c | |
parent | cc22698e3d08fa9f43bbb8637f9ae25ed57afa02 (diff) |
move #include <sys/stat.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/auth.c')
-rw-r--r-- | usr.bin/ssh/auth.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c index 241cf710309..a1353623cbe 100644 --- a/usr.bin/ssh/auth.c +++ b/usr.bin/ssh/auth.c @@ -23,7 +23,10 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth.c,v 1.61 2006/02/08 12:15:27 stevesk Exp $"); +RCSID("$OpenBSD: auth.c,v 1.62 2006/02/20 17:19:53 stevesk Exp $"); + +#include <sys/types.h> +#include <sys/stat.h> #include <libgen.h> #include <paths.h> |