diff options
author | Sverker Eriksson <[email protected]> | 2015-04-15 16:55:55 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2015-04-15 17:01:20 +0200 |
commit | 8846021fe1b1bcf79ec3a01037a8a656e161766c (patch) | |
tree | fce7b801da0daf9fcb3233e62111273572bc08c1 /erts/emulator/sys/ose | |
parent | f0cfce64b6a061ffeafeda254734f0b1f2f452fd (diff) | |
download | otp-8846021fe1b1bcf79ec3a01037a8a656e161766c.tar.gz otp-8846021fe1b1bcf79ec3a01037a8a656e161766c.tar.bz2 otp-8846021fe1b1bcf79ec3a01037a8a656e161766c.zip |
erts: Fix isfinite for windows
Add macro erts_isfinite as an OS independent way to check
if a float is finite.
Diffstat (limited to 'erts/emulator/sys/ose')
-rw-r--r-- | erts/emulator/sys/ose/erl_ose_sys.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/sys/ose/erl_ose_sys.h b/erts/emulator/sys/ose/erl_ose_sys.h index cd66d95c26..f6526a4714 100644 --- a/erts/emulator/sys/ose/erl_ose_sys.h +++ b/erts/emulator/sys/ose/erl_ose_sys.h @@ -112,6 +112,8 @@ extern clock_t sys_times(SysTimes *buffer); /* No use in having other resolutions than 1 Ms. */ #define SYS_CLOCK_RESOLUTION 1 +#define erts_isfinite finite + #ifdef NO_FPE_SIGNALS #define erts_get_current_fp_exception() NULL |