diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2009-06-22 05:39:29 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2009-06-22 05:39:29 +0000 |
commit | 8e9f0e3e7f0deba751a2fbafb8b9276e17b629f4 (patch) | |
tree | 0ae5a27d45d97382a973c358c2ff1c19777b3b09 /usr.bin/ssh/ssh-keygen.c | |
parent | f8e93f3d495bc05de60a1248b181df0aecb9cdc3 (diff) |
alphabetize includes; reduces diff vs portable and style(9). ok stevesk djm
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index e542204b66b..8d44f39c219 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.173 2009/02/21 19:32:04 tobias Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.174 2009/06/22 05:39:28 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -13,8 +13,8 @@ */ #include <sys/types.h> -#include <sys/stat.h> #include <sys/socket.h> +#include <sys/stat.h> #include <sys/param.h> #include <openssl/evp.h> |