test/tinytest_demo: include <windows.h> for win32 to fix tdm-gcc

From: @gvanem
Fixes: #325
This commit is contained in:
Azat Khuzhin 2016-02-24 14:02:37 +03:00
parent 73d0360e83
commit f062bbe3f9

View File

@ -36,7 +36,9 @@
#include <string.h> #include <string.h>
#include <errno.h> #include <errno.h>
#include <time.h> #include <time.h>
#ifndef _WIN32 #ifdef _WIN32
#include <windows.h>
#else
#include <unistd.h> #include <unistd.h>
#endif #endif