diff options
author | 2006-07-22 20:48:22 +0000 | |
---|---|---|
committer | 2006-07-22 20:48:22 +0000 | |
commit | 0deb67942b30c1593c2410880c6206349479cd2f (patch) | |
tree | 9acb3eb91469c8753beea5543419000531af95bd /usr.bin/ssh/ssh-keyscan.c | |
parent | move #include <time.h> out of includes.h (diff) | |
download | wireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.tar.xz wireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.zip |
move #include <string.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index 99971b08888..a07cc7ef732 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keyscan.c,v 1.68 2006/07/17 01:31:10 stevesk Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.69 2006/07/22 20:48:23 stevesk Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -14,14 +14,15 @@ #include <sys/queue.h> #include <sys/resource.h> +#include <openssl/bn.h> + #include <errno.h> #include <netdb.h> #include <setjmp.h> #include <stdarg.h> +#include <string.h> #include <unistd.h> -#include <openssl/bn.h> - #include "xmalloc.h" #include "ssh.h" #include "ssh1.h" |