* time.h: (CLOCKS_PER_SEC) Change from FP to integer constant.

This commit is contained in:
Earnie Boyd 2001-01-29 19:05:18 +00:00
parent 68ea0dc2fc
commit 2f3ea37bc8
2 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,8 @@
Mon Jan 29 14:03:07 2001 Earnie Boyd <earnie@users.sourceforge.net>
* time.h: (CLOCKS_PER_SEC) Change from FP to integer constant.
Sun Jan 28 13:01:08 2001 Earnie Boyd <earnie@users.sourceforge.net>
* include/wchar.h: The 2001.01.18 Change was incorrect. The functions

View File

@ -45,7 +45,7 @@
* Number of clock ticks per second. A clock tick is the unit by which
* processor time is measured and is returned by 'clock'.
*/
#define CLOCKS_PER_SEC 1000.0
#define CLOCKS_PER_SEC 1000
#define CLK_TCK CLOCKS_PER_SEC