remove CLK_TCK, not always defined

This commit is contained in:
jsorg71 2007-10-15 04:36:25 +00:00
parent e4d8ba4ce9
commit b7e71971a1
1 changed files with 1 additions and 1 deletions

View File

@ -1571,6 +1571,6 @@ g_time2(void)
clock_t num_ticks;
num_ticks = times(&tm);
return (int)((num_ticks / CLK_TCK) * 1000);
return (int)(num_ticks * 10);
#endif
}