xref: /haiku/src/system/libroot/posix/musl/math/fabsf.c (revision 39be4f89f500d489df5a6d8b2162f6e271e1b05e)
1 #include <math.h>
2 #include <stdint.h>
3 
4 float fabsf(float x)
5 {
6 	union {float f; uint32_t i;} u = {x};
7 	u.i &= 0x7fffffff;
8 	return u.f;
9 }
10