root/src/system/libroot/posix/musl/math/fabs.c
#include <math.h>
#include <stdint.h>

double fabs(double x)
{
        union {double f; uint64_t i;} u = {x};
        u.i &= -1ULL/2;
        return u.f;
}