diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:15:12 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-09 15:15:12 +0000 |
commit | 0810117b8375d88af0d02ded172dacc19d88c6cf (patch) | |
tree | 359c3536690cb16962f43ed17fdfc9d8e8c5bba4 /usr.bin/ssh/ssh-keysign.c | |
parent | 9e854c8465a5d4078ce824c4c519af429c8f71cb (diff) |
move #include <fcntl.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh-keysign.c')
-rw-r--r-- | usr.bin/ssh/ssh-keysign.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keysign.c b/usr.bin/ssh/ssh-keysign.c index 29b841a2f96..695799ffdec 100644 --- a/usr.bin/ssh/ssh-keysign.c +++ b/usr.bin/ssh/ssh-keysign.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keysign.c,v 1.24 2006/07/06 16:03:53 stevesk Exp $ */ +/* $OpenBSD: ssh-keysign.c,v 1.25 2006/07/09 15:15:11 stevesk Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -30,6 +30,7 @@ #include <openssl/rand.h> #include <openssl/rsa.h> +#include <fcntl.h> #include <paths.h> #include <pwd.h> |