diff options
author | 2006-02-07 01:18:09 +0000 | |
---|---|---|
committer | 2006-02-07 01:18:09 +0000 | |
commit | 61aaa1128f1cadb2d372c334974b0126cda8876a (patch) | |
tree | 9ab6f34096de3c09564c4bd411d940bbc9916a32 /usr.bin/ssh/ssh-keyscan.c | |
parent | move #include <netgroup.h> out of includes.h; ok markus@ (diff) | |
download | wireguard-openbsd-61aaa1128f1cadb2d372c334974b0126cda8876a.tar.xz wireguard-openbsd-61aaa1128f1cadb2d372c334974b0126cda8876a.zip |
move #include <sys/queue.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index ac897089aa1..faa66b2b1cd 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -7,14 +7,15 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keyscan.c,v 1.57 2005/10/30 04:01:03 djm Exp $"); +RCSID("$OpenBSD: ssh-keyscan.c,v 1.58 2006/02/07 01:18:09 stevesk Exp $"); #include <sys/queue.h> + #include <errno.h> +#include <setjmp.h> #include <openssl/bn.h> -#include <setjmp.h> #include "xmalloc.h" #include "ssh.h" #include "ssh1.h" |