Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-08-23 10:31:45 +0000
committerStijn Buys <ingar@osirion.org>2008-08-23 10:31:45 +0000
commitdaf84bb6292eb5bf5434889a887535ec54c21b6b (patch)
tree1674d55039da9a100bf1d2a4a8596b793b6841a8 /src/core
parent7668b60981dadeced3b5c8ee27c16575d59844de (diff)
fixes for gcc 4.3.1, added g_devel
Diffstat (limited to 'src/core')
-rw-r--r--src/core/netclient.cc1
-rw-r--r--src/core/netconnection.cc1
-rw-r--r--src/core/netserver.cc1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/core/netclient.cc b/src/core/netclient.cc
index fa89e47..1289319 100644
--- a/src/core/netclient.cc
+++ b/src/core/netclient.cc
@@ -4,6 +4,7 @@
the terms of the GNU General Public License version 2
*/
+#include <string.h>
#include <zlib.h>
#include <iostream>
diff --git a/src/core/netconnection.cc b/src/core/netconnection.cc
index 0b33652..ed1a91b 100644
--- a/src/core/netconnection.cc
+++ b/src/core/netconnection.cc
@@ -5,6 +5,7 @@
*/
#include <zlib.h>
+#include <string.h>
#include <sstream>
diff --git a/src/core/netserver.cc b/src/core/netserver.cc
index dd70bcf..dcc152f 100644
--- a/src/core/netserver.cc
+++ b/src/core/netserver.cc
@@ -4,6 +4,7 @@
the terms of the GNU General Public License version 2
*/
+#include <string.h>
#include <unistd.h>
#include <errno.h>