industry_cmd.c
changeset 1093 e8d26c7dc42f
parent 1059 c28c6be74291
child 1174 27e386195965
--- a/industry_cmd.c	Sat Jan 22 19:41:30 2005 +0000
+++ b/industry_cmd.c	Sat Jan 22 20:23:18 2005 +0000
@@ -1096,7 +1096,7 @@
 	}
 }
 
-void OnTick_Industry()
+void OnTick_Industry(void)
 {
 	Industry *i;
 
@@ -1399,7 +1399,7 @@
 	return true;
 }
 
-static Industry *AllocateIndustry()
+static Industry *AllocateIndustry(void)
 {
 	Industry *i;
 
@@ -1614,7 +1614,7 @@
 	}
 }
 
-void GenerateIndustries()
+void GenerateIndustries(void)
 {
 	const byte *b;
 
@@ -1814,7 +1814,7 @@
 	}
 }
 
-void IndustryMonthlyLoop()
+void IndustryMonthlyLoop(void)
 {
 	Industry *i;
 	byte old_player = _current_player;
@@ -1843,7 +1843,7 @@
 }
 
 
-void InitializeIndustries()
+void InitializeIndustries(void)
 {
 	Industry *i;
 	int j;
@@ -1905,7 +1905,7 @@
 	SLE_END()
 };
 
-static void Save_INDY()
+static void Save_INDY(void)
 {
 	Industry *ind;
 
@@ -1918,7 +1918,7 @@
 	}
 }
 
-static void Load_INDY()
+static void Load_INDY(void)
 {
 	int index;
 	_total_industries = 0;