summaryrefslogtreecommitdiff
path: root/numsort.c
diff options
context:
space:
mode:
Diffstat (limited to 'numsort.c')
-rw-r--r--numsort.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/numsort.c b/numsort.c
index 8f94c00..36dbff6 100644
--- a/numsort.c
+++ b/numsort.c
@@ -26,8 +26,8 @@
static clock_t DoNumSortIteration(long *array, unsigned int num_arrays);
static void LoadNumArrayWithRand(long *array, unsigned int num_arrays);
-static inline void NumHeapSort(long *array, unsigned long bottom, unsigned long top);
-static inline void NumSift(long *array, unsigned long min, unsigned long max);
+static void NumHeapSort(long *array, unsigned long bottom, unsigned long top);
+static void NumSift(long *array, unsigned long min, unsigned long max);
/**************
** DoNumSort **
@@ -162,7 +162,7 @@ LoadNumArrayWithRand(long *array, unsigned int num_arrays)
** integers. Also pass in minimum and maximum offsets.
** This routine performs a heap sort on that array.
*/
-static inline void
+static void
NumHeapSort(long *array, unsigned long bottom, unsigned long top)
{
unsigned long temp; /* Used to exchange elements */
@@ -195,7 +195,7 @@ NumHeapSort(long *array, unsigned long bottom, unsigned long top)
** Peforms the sift operation on a numeric array,
** constructing a heap in the array.
*/
-static inline void
+static void
NumSift(long *array, unsigned long min, unsigned long max)
{
unsigned long k;