mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
8 lines
126 B
C
8 lines
126 B
C
#include "libc/math/math.h"
|
|
|
|
float fabsf(float x)
|
|
{
|
|
union {float f; uint32_t i;} u = {x};
|
|
u.i &= 0x7fffffff;
|
|
return u.f;
|
|
}
|