diff --git a/tmain.c b/tmain.c index 0031fc2..79e1c24 100644 --- a/tmain.c +++ b/tmain.c @@ -1,16 +1,23 @@ #include #include +enum { NRounds = 150 }; + extern long f(void); int main() { - clock_t t0; - long l; + clock_t t0, tmin; + long i, l; - t0 = clock(); - l = f(); - t0 = clock() - t0; + tmin = 10 * CLOCKS_PER_SEC; + for (i=0; i