From fca55e374145de586143a340aa46a72d4f0ea47a Mon Sep 17 00:00:00 2001 From: tron Date: Wed, 24 Nov 2004 13:19:48 +0000 Subject: (svn r793) Merge INLINE -> inline replacement (revision 376) --- pathfind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pathfind.c') diff --git a/pathfind.c b/pathfind.c index 7547d348e..122b79ad9 100644 --- a/pathfind.c +++ b/pathfind.c @@ -434,7 +434,7 @@ typedef struct { // called after a new element was added in the queue at the last index. // move it down to the proper position -static void INLINE HeapifyUp(NewTrackPathFinder *tpf) +static void inline HeapifyUp(NewTrackPathFinder *tpf) { StackedItem si; int i = ++tpf->nstack; @@ -448,7 +448,7 @@ static void INLINE HeapifyUp(NewTrackPathFinder *tpf) } // called after the element 0 was eaten. fill it with a new element -static void INLINE HeapifyDown(NewTrackPathFinder *tpf) +static void inline HeapifyDown(NewTrackPathFinder *tpf) { StackedItem si; int i = 1, j; -- cgit v1.2.3-54-g00ecf