diff options
Diffstat (limited to '')
-rw-r--r-- | libc-top-half/musl/src/math/logbf.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/logbf.c b/libc-top-half/musl/src/math/logbf.c new file mode 100644 index 0000000..a0a0b5e --- /dev/null +++ b/libc-top-half/musl/src/math/logbf.c @@ -0,0 +1,10 @@ +#include <math.h> + +float logbf(float x) +{ + if (!isfinite(x)) + return x * x; + if (x == 0) + return -1/(x*x); + return ilogbf(x); +} |