| Server IP : 82.208.35.60 / Your IP : 216.73.216.238 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/ports/math/sleef/files/ |
Upload File : |
--- src/libm-tester/testerutil.c.orig 2021-11-18 16:26:40 UTC
+++ src/libm-tester/testerutil.c
@@ -45,7 +45,7 @@ int isMinusZero(double x) { return x == 0 && copysign(
double sign(double d) { return d < 0 ? -1 : 1; }
int xisnan(double x) { return x != x; }
-int isnumberf(float x) { return !isinff(x) && !isnanf(x); }
+int isnumberf(float x) { return !isinf(x) && !isnanf(x); }
int isPlusZerof(float x) { return x == 0 && copysignf(1, x) == 1; }
int isMinusZerof(float x) { return x == 0 && copysignf(1, x) == -1; }
float signf(float d) { return d < 0 ? -1 : 1; }