branches/zip: Remove the unused function ut_clock().

This commit is contained in:
marko 2006-09-29 10:43:42 +00:00
parent 77ebaf6f33
commit 285f1e1d0a
2 changed files with 0 additions and 14 deletions

View file

@ -134,11 +134,6 @@ Sort function for ulint arrays. */
void
ut_ulint_sort(ulint* arr, ulint* aux_arr, ulint low, ulint high);
/*============================================================*/
/************************************************************
The following function returns elapsed CPU time in milliseconds. */
ulint
ut_clock(void);
/**************************************************************
Returns system time. We do not specify the format of the time returned:
the only way to manipulate it is to use the function ut_difftime. */

View file

@ -56,15 +56,6 @@ ut_get_high32(
return((ulint)i);
}
/************************************************************
The following function returns elapsed CPU time in milliseconds. */
ulint
ut_clock(void)
{
return((clock() * 1000) / CLOCKS_PER_SEC);
}
/**************************************************************
Returns system time. We do not specify the format of the time returned:
the only way to manipulate it is to use the function ut_difftime. */