summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/math/logb.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/math/logb.c')
-rw-r--r--libc-top-half/musl/src/math/logb.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/logb.c b/libc-top-half/musl/src/math/logb.c
new file mode 100644
index 0000000..7f8bdfa
--- /dev/null
+++ b/libc-top-half/musl/src/math/logb.c
@@ -0,0 +1,17 @@
+#include <math.h>
+
+/*
+special cases:
+ logb(+-0) = -inf, and raise divbyzero
+ logb(+-inf) = +inf
+ logb(nan) = nan
+*/
+
+double logb(double x)
+{
+ if (!isfinite(x))
+ return x * x;
+ if (x == 0)
+ return -1/(x*x);
+ return ilogb(x);
+}