diff -r b224c29812bc -r 8e52f7797b48 pathfind.c --- a/pathfind.c Wed Nov 24 12:47:25 2004 +0000 +++ b/pathfind.c Wed Nov 24 13:19:48 2004 +0000 @@ -434,7 +434,7 @@ // 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 @@ } // 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;