From 7a57eeccd8ded740d88aba3ea9dcb09050983dd0 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Wed, 12 Nov 2008 23:02:01 +0000 Subject: Remove stupid MAXPOSLONG define (otherwise standardized as LONG_MAX) git-svn-id: svn://mattst88.com/svn/cleanbench/trunk@13 0d43b9a7-5ab2-4d7b-af9d-f64450cef757 --- numsort.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'numsort.c') diff --git a/numsort.c b/numsort.c index f0ab459..34e685f 100644 --- a/numsort.c +++ b/numsort.c @@ -2,6 +2,7 @@ #include #include #include +#include #include "nmglobal.h" #include "nbench1.h" @@ -60,7 +61,7 @@ DoNumSort (void) ** minimum, then allocate for more arrays and ** try again. */ - if (DoNumSortIteration(arraybase, numsortstruct->arraysize, numsortstruct->numarrays)>global_min_ticks) { + if (DoNumSortIteration(arraybase, numsortstruct->arraysize, numsortstruct->numarrays) > global_min_ticks) { break; } -- cgit v1.2.3