summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/math/__signbitf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/math/__signbitf.c')
-rw-r--r--libc-top-half/musl/src/math/__signbitf.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/math/__signbitf.c b/libc-top-half/musl/src/math/__signbitf.c
new file mode 100644
index 0000000..40ad3cf
--- /dev/null
+++ b/libc-top-half/musl/src/math/__signbitf.c
@@ -0,0 +1,11 @@
+#include "libm.h"
+
+// FIXME: macro in math.h
+int __signbitf(float x)
+{
+ union {
+ float f;
+ uint32_t i;
+ } y = { x };
+ return y.i>>31;
+}