musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/math/logbf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/logbf.c')
-rw-r--r--src/math/logbf.c 4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/logbf.c b/src/math/logbf.c
index 950d3569..a0a0b5ed 100644
--- a/src/math/logbf.c
+++ b/src/math/logbf.c
@@ -1,10 +1,10 @@
-#include "libm.h"
+#include <math.h>
float logbf(float x)
{
if (!isfinite(x))
return x * x;
if (x == 0)
- return -1/(x+0);
+ return -1/(x*x);
return ilogbf(x);
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月06日 09:15:29 +0000

AltStyle によって変換されたページ (->オリジナル) /