cosmopolitan/libc/math/fabs.c
2020-06-15 07:18:57 -07:00

10 lines
142 B
C

#include "libc/math/math.h"
double fabs(double x) {
union {
double f;
uint64_t i;
} u = {x};
u.i &= -1ULL / 2;
return u.f;
}