mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Set math_errhandling to MATH_ERREXCEPT. Now that we have fenv.h, we
basically support this, subject to gcc's lack of FENV_ACCESS support. In any case, the previous setting of math_errhandling to 0 is not allowed by POSIX.
This commit is contained in:
parent
c165c4b9aa
commit
ce4e53c460
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ extern const union __nan_un {
|
|||
|
||||
#define MATH_ERRNO 1
|
||||
#define MATH_ERREXCEPT 2
|
||||
#define math_errhandling 0
|
||||
#define math_errhandling MATH_ERREXCEPT
|
||||
|
||||
/* Symbolic constants to classify floating point numbers. */
|
||||
#define FP_INFINITE 0x01
|
||||
|
|
|
|||
Loading…
Reference in a new issue