diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-08-01 23:22:49 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-08-01 23:22:49 +0000 |
commit | 8bca0b445803e5a882bac2c04ef075d7d4591fa8 (patch) | |
tree | 3d471639f947b7495aa216ba79b46fda1354ae06 /usr.bin/ssh/auth2-pubkey.c | |
parent | 537747624b6d9a808c56233517e47cc629b23e30 (diff) |
move #include <stdio.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/auth2-pubkey.c')
-rw-r--r-- | usr.bin/ssh/auth2-pubkey.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/auth2-pubkey.c b/usr.bin/ssh/auth2-pubkey.c index 61242541e92..3cd3b1668c8 100644 --- a/usr.bin/ssh/auth2-pubkey.c +++ b/usr.bin/ssh/auth2-pubkey.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth2-pubkey.c,v 1.13 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: auth2-pubkey.c,v 1.14 2006/08/01 23:22:47 stevesk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -29,6 +29,7 @@ #include <sys/stat.h> #include <pwd.h> +#include <stdio.h> #include "ssh.h" #include "ssh2.h" |