diff options
author | 2006-07-10 16:37:36 +0000 | |
---|---|---|
committer | 2006-07-10 16:37:36 +0000 | |
commit | f60fc7f4e18877c432858c402385f73c2afe1a28 (patch) | |
tree | 9200721f8a6e43b47575c381ec07305bd337974f /usr.bin/ssh/ssh-keyscan.c | |
parent | NetBSD -> .Nx (diff) | |
download | wireguard-openbsd-f60fc7f4e18877c432858c402385f73c2afe1a28.tar.xz wireguard-openbsd-f60fc7f4e18877c432858c402385f73c2afe1a28.zip |
move #include <stdarg.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 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index af587402499..a6216695ce7 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.65 2006/07/08 21:47:12 stevesk Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.66 2006/07/10 16:37:36 stevesk Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -16,6 +16,7 @@ #include <errno.h> #include <setjmp.h> +#include <stdarg.h> #include <openssl/bn.h> |