From 3ff479170160d9e078a2dd3036a93db74961f5eb Mon Sep 17 00:00:00 2001 From: Stéphane Raimbault Date: Tue, 12 Jun 2012 00:10:12 +0200 Subject: [PATCH] Fix random-test-* with Microsoft compiler (closes #65) --- tests/random-test-client.c | 2 ++ tests/random-test-server.c | 2 ++ 2 files changed, 4 insertions(+), 0 deletions(-) diff --git a/tests/random-test-client.c b/tests/random-test-client.c index 5b62f93..13dee0d 100644 --- a/tests/random-test-client.c +++ b/tests/random-test-client.c @@ -16,7 +16,9 @@ */ #include +#ifndef _MSC_VER #include +#endif #include #include #include diff --git a/tests/random-test-server.c b/tests/random-test-server.c index 8acf46b..43ef2f6 100644 --- a/tests/random-test-server.c +++ b/tests/random-test-server.c @@ -16,7 +16,9 @@ */ #include +#ifndef _MSC_VER #include +#endif #include #include -- libgit2 0.21.4