From f062bbe3f9930497c422217b342124011f741b7b Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Wed, 24 Feb 2016 14:02:37 +0300 Subject: [PATCH] test/tinytest_demo: include for win32 to fix tdm-gcc From: @gvanem Fixes: #325 --- test/tinytest_demo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/tinytest_demo.c b/test/tinytest_demo.c index bdd0e600..f6bfd66a 100644 --- a/test/tinytest_demo.c +++ b/test/tinytest_demo.c @@ -36,7 +36,9 @@ #include #include #include -#ifndef _WIN32 +#ifdef _WIN32 +#include +#else #include #endif