From 04faa332596b6f37af7dfd68910aedb3dde86dfc Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sun, 11 Sep 2011 08:24:33 +0200 Subject: kex: Fix includes. --- src/kex.c | 4 ---- src/kex1.c | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/kex.c b/src/kex.c index e3a7857..fdff206 100644 --- a/src/kex.c +++ b/src/kex.c @@ -27,10 +27,6 @@ #include #include -#ifndef _WIN32 -#include -#endif - #include "libssh/priv.h" #include "libssh/buffer.h" #include "libssh/dh.h" diff --git a/src/kex1.c b/src/kex1.c index 9daf5c3..ef1ccb4 100644 --- a/src/kex1.c +++ b/src/kex1.c @@ -23,6 +23,10 @@ #include "config.h" +#ifndef _WIN32 +#include +#endif + #include "libssh/priv.h" #include "libssh/buffer.h" #include "libssh/kex.h" -- cgit