|
From: <ufo...@li...> - 2009-04-18 20:55:07
|
Revision: 1101
http://ufo2000.svn.sourceforge.net/ufo2000/?rev=1101&view=rev
Author: ssvb
Date: 2009-04-18 20:55:03 +0000 (Sat, 18 Apr 2009)
Log Message:
-----------
Added missing '#include <stdlib.h>', it is needed for compilation
of game server with the latest gcc.
Modified Paths:
--------------
trunk/src/server_config.cpp
trunk/src/server_main.cpp
trunk/src/server_protocol.cpp
Modified: trunk/src/server_config.cpp
===================================================================
--- trunk/src/server_config.cpp 2009-04-18 20:53:53 UTC (rev 1100)
+++ trunk/src/server_config.cpp 2009-04-18 20:55:03 UTC (rev 1101)
@@ -24,6 +24,7 @@
#endif
#include <stdio.h>
+#include <stdlib.h>
#include <time.h>
#include <stdarg.h>
#include <nl.h>
Modified: trunk/src/server_main.cpp
===================================================================
--- trunk/src/server_main.cpp 2009-04-18 20:53:53 UTC (rev 1100)
+++ trunk/src/server_main.cpp 2009-04-18 20:55:03 UTC (rev 1101)
@@ -23,6 +23,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <nl.h>
#include <signal.h>
#include "server.h"
Modified: trunk/src/server_protocol.cpp
===================================================================
--- trunk/src/server_protocol.cpp 2009-04-18 20:53:53 UTC (rev 1100)
+++ trunk/src/server_protocol.cpp 2009-04-18 20:55:03 UTC (rev 1101)
@@ -20,6 +20,7 @@
*/
#include <stdio.h>
+#include <stdlib.h>
#include <stdexcept>
#include "server_protocol.h"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|