lib/libm/math: Add implementation of __signbitf, if needed by a port.
This commit is contained in:
parent
4c08932e73
commit
8960a28238
|
@ -36,6 +36,11 @@ typedef union {
|
||||||
};
|
};
|
||||||
} float_s_t;
|
} float_s_t;
|
||||||
|
|
||||||
|
int __signbitf(float f) {
|
||||||
|
float_s_t u = {.f = f};
|
||||||
|
return u.s;
|
||||||
|
}
|
||||||
|
|
||||||
#ifndef NDEBUG
|
#ifndef NDEBUG
|
||||||
float copysignf(float x, float y) {
|
float copysignf(float x, float y) {
|
||||||
float_s_t fx={.f = x};
|
float_s_t fx={.f = x};
|
||||||
|
|
Loading…
Reference in New Issue