diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog index 6646b5ab1..a7fbb16fd 100644 --- a/winsup/mingw/ChangeLog +++ b/winsup/mingw/ChangeLog @@ -1,4 +1,8 @@ +Mon Jan 29 14:03:07 2001 Earnie Boyd + + * time.h: (CLOCKS_PER_SEC) Change from FP to integer constant. + Sun Jan 28 13:01:08 2001 Earnie Boyd * include/wchar.h: The 2001.01.18 Change was incorrect. The functions diff --git a/winsup/mingw/include/time.h b/winsup/mingw/include/time.h index 53dd86a5f..2305842f2 100644 --- a/winsup/mingw/include/time.h +++ b/winsup/mingw/include/time.h @@ -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