From 5696ee8421bc3ad07d62686befe0bcc6c62489dc Mon Sep 17 00:00:00 2001
From: Ilya Zhuravlev <zhuravlevilya@ya.ru>
Date: Tue, 22 Jan 2013 01:16:29 +0400
Subject: [PATCH] Fix msvc build

---
 src/porting.cpp | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/porting.cpp b/src/porting.cpp
index 651c92ff9..de15de9ce 100644
--- a/src/porting.cpp
+++ b/src/porting.cpp
@@ -23,9 +23,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 	See comments in porting.h
 */
 
-#if defined(_WIN32)
-	#include <windows.h>
-#elif defined(linux)
+#if defined(linux)
 	#include <unistd.h>
 #elif defined(__APPLE__)
 	#include <unistd.h>
@@ -92,7 +90,6 @@ void signal_handler_init(void)
 
 #else // _WIN32
 	#include <signal.h>
-	#include <windows.h>
 
 	BOOL WINAPI event_handler(DWORD sig)
 	{
-- 
GitLab