From 15473e32e49a75fd497499cb44c0d360e27524f9 Mon Sep 17 00:00:00 2001
From: johns <>
Date: Sat, 28 Jul 2001 01:56:10 +0000
Subject: [PATCH] Includes not available for MSC.

---
 src/game/savegame.cpp    | 2 ++
 src/network/commands.cpp | 2 ++
 src/network/lowlevel.cpp | 2 ++
 3 files changed, 6 insertions(+)

diff --git a/src/game/savegame.cpp b/src/game/savegame.cpp
index 3c5d2e45d..51297259e 100644
--- a/src/game/savegame.cpp
+++ b/src/game/savegame.cpp
@@ -31,7 +31,9 @@
 ----------------------------------------------------------------------------*/
 
 #include <stdio.h>
+#ifndef _MSC_VER
 #include <time.h>
+#endif
 
 #include "freecraft.h"
 
diff --git a/src/network/commands.cpp b/src/network/commands.cpp
index 30f212efe..58430bf86 100644
--- a/src/network/commands.cpp
+++ b/src/network/commands.cpp
@@ -32,7 +32,9 @@
 
 #include <stdio.h>
 #include <stdlib.h>
+#ifndef _MSC_VER
 #include <time.h>
+#endif
 
 #include "freecraft.h"
 #include "unit.h"
diff --git a/src/network/lowlevel.cpp b/src/network/lowlevel.cpp
index c8459b061..9b3021902 100644
--- a/src/network/lowlevel.cpp
+++ b/src/network/lowlevel.cpp
@@ -37,7 +37,9 @@
 #include <stddef.h>
 #include <string.h>
 
+#ifndef _MSC_VER
 #include <signal.h>
+#endif
 
 #include "freecraft.h"
 #include "net_lowlevel.h"