Fix braino in definition of isfinite().
Noticed by: marcus Pointy hat to: das
This commit is contained in:
parent
5a1181a557
commit
534d93f661
@ -51,7 +51,7 @@ extern const union __nan_un {
|
||||
: (sizeof (x) == sizeof (double)) ? __fpclassifyd(x) \
|
||||
: __fpclassifyl(x))
|
||||
|
||||
#define isfinite(x) (fpclassify(x) & (FP_INFINITE|FP_NAN) == 0)
|
||||
#define isfinite(x) ((fpclassify(x) & (FP_INFINITE|FP_NAN)) == 0)
|
||||
#define isinf(x) (fpclassify(x) == FP_INFINITE)
|
||||
#define isnan(x) (fpclassify(x) == FP_NAN)
|
||||
#define isnanf(x) isnan(x)
|
||||
|
Loading…
Reference in New Issue
Block a user