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/authfile.c | |
parent | 537747624b6d9a808c56233517e47cc629b23e30 (diff) |
move #include <stdio.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r-- | usr.bin/ssh/authfile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index c937e7388f8..0f2ea36ba58 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfile.c,v 1.73 2006/07/26 13:57:17 stevesk Exp $ */ +/* $OpenBSD: authfile.c,v 1.74 2006/08/01 23:22:47 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -48,6 +48,7 @@ #include <errno.h> #include <fcntl.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> |