diff -r 9adcd7820373 -r e8d26c7dc42f station_cmd.c --- a/station_cmd.c Sat Jan 22 19:41:30 2005 +0000 +++ b/station_cmd.c Sat Jan 22 20:23:18 2005 +0000 @@ -137,7 +137,7 @@ return true; } -static Station *AllocateStation() +static Station *AllocateStation(void) { Station *st, *a_free = NULL; int num_free = 0; @@ -360,7 +360,7 @@ } // Update the virtual coords needed to draw the station sign for all stations. -void UpdateAllStationVirtCoord() +void UpdateAllStationVirtCoord(void) { Station *st; FOR_ALL_STATIONS(st) { @@ -2293,7 +2293,7 @@ DeleteSubsidyWithStation(index); } -void DeleteAllPlayerStations() +void DeleteAllPlayerStations(void) { Station *st; @@ -2433,7 +2433,7 @@ UpdateStationRating(st); } -void OnTick_Station() +void OnTick_Station(void) { int i; Station *st; @@ -2456,7 +2456,7 @@ } -void StationMonthlyLoop() +void StationMonthlyLoop(void) { } @@ -2772,7 +2772,7 @@ } -void InitializeStations() +void InitializeStations(void) { int i; Station *s; @@ -2874,7 +2874,7 @@ SlObject(&st->goods[i], _goods_desc); } -static void Save_STNS() +static void Save_STNS(void) { Station *st; // Write the stations @@ -2886,7 +2886,7 @@ } } -static void Load_STNS() +static void Load_STNS(void) { int index; while ((index = SlIterateArray()) != -1) {