diff options
author | Earnie Boyd <earnie@users.sf.net> | 2001-01-29 19:05:18 +0000 |
---|---|---|
committer | Earnie Boyd <earnie@users.sf.net> | 2001-01-29 19:05:18 +0000 |
commit | 2f3ea37bc8710a775cc1174c496c7fa559f95cdd (patch) | |
tree | 9339881a28342bcee535b788b12add26443de64f /winsup/mingw/include | |
parent | 68ea0dc2fca0ad45fd31277d8fab17cd4c2f0e45 (diff) | |
download | newlib-2f3ea37bc8710a775cc1174c496c7fa559f95cdd.zip newlib-2f3ea37bc8710a775cc1174c496c7fa559f95cdd.tar.gz newlib-2f3ea37bc8710a775cc1174c496c7fa559f95cdd.tar.bz2 |
* time.h: (CLOCKS_PER_SEC) Change from FP to integer constant.
Diffstat (limited to 'winsup/mingw/include')
-rw-r--r-- | winsup/mingw/include/time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/mingw/include/time.h b/winsup/mingw/include/time.h index 53dd86a..2305842 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 |