From 9822b4d755ba1bcc126643cd21a2c4362a4026d9 Mon Sep 17 00:00:00 2001 From: tron Date: Wed, 14 Dec 2005 06:20:23 +0000 Subject: (svn r3297) Staticise --- waypoint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'waypoint.c') diff --git a/waypoint.c b/waypoint.c index 53844a609..8d323eb3a 100644 --- a/waypoint.c +++ b/waypoint.c @@ -41,7 +41,7 @@ static void WaypointPoolNewBlock(uint start_item) MemoryPool _waypoint_pool = { "Waypoints", WAYPOINT_POOL_MAX_BLOCKS, WAYPOINT_POOL_BLOCK_SIZE_BITS, sizeof(Waypoint), &WaypointPoolNewBlock, 0, 0, NULL }; /* Create a new waypoint */ -Waypoint *AllocateWaypoint(void) +static Waypoint* AllocateWaypoint(void) { Waypoint *wp; @@ -72,7 +72,7 @@ void UpdateWaypointSign(Waypoint *wp) } /* Redraw the sign of a waypoint */ -void RedrawWaypointSign(Waypoint *wp) +static void RedrawWaypointSign(const Waypoint* wp) { MarkAllViewportsDirty( wp->sign.left - 6, @@ -93,7 +93,7 @@ void UpdateAllWaypointSigns(void) } /* Set the default name for a waypoint */ -void MakeDefaultWaypointName(Waypoint *wp) +static void MakeDefaultWaypointName(Waypoint* wp) { Waypoint *local_wp; bool used_waypoint[MAX_WAYPOINTS_PER_TOWN]; -- cgit v1.2.3-54-g00ecf