From 52d6b7b9149b913872de08948bdd95603a4698b9 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Sat, 1 Jan 2011 20:20:42 +0100 Subject: tests: Fixed includes of torture_options for windows. --- tests/unittests/torture_options.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/unittests/torture_options.c b/tests/unittests/torture_options.c index 401e593..4d20c21 100644 --- a/tests/unittests/torture_options.c +++ b/tests/unittests/torture_options.c @@ -1,8 +1,12 @@ #define LIBSSH_STATIC +#ifndef _WIN32 +# include +#endif + #include "torture.h" -#include "options.c" -#include "misc.c" +#include +#include static void setup(void **state) { ssh_session session = ssh_new(); -- cgit