network.c
changeset 1093 e8d26c7dc42f
parent 1026 5b2681cad645
child 1095 90220990fd7c
--- a/network.c	Sat Jan 22 19:41:30 2005 +0000
+++ b/network.c	Sat Jan 22 20:23:18 2005 +0000
@@ -41,9 +41,9 @@
 static uint16 _network_client_index = NETWORK_SERVER_INDEX + 1;
 
 /* Some externs / forwards */
-extern void ShowJoinStatusWindow();
-extern void StateGameLoop();
-extern uint GetCurrentCurrencyRate();
+extern void ShowJoinStatusWindow(void);
+extern void StateGameLoop(void);
+extern uint GetCurrentCurrencyRate(void);
 
 // Function that looks up the CI for a given client-index
 NetworkClientInfo *NetworkFindClientInfoFromIndex(uint16 client_index)
@@ -878,7 +878,7 @@
 /* Generates the list of manually added hosts from NetworkGameList and
  * dumps them into the array _network_host_list. This array is needed
  * by the function that generates the config file. */
-void NetworkRebuildHostList()
+void NetworkRebuildHostList(void)
 {
 	uint i = 0;
 	NetworkGameList *item = _network_game_list;