fabs.c\math\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/math/fabs.c
blob: e8258cfdbcf1a751621a69bac02f0f0f9b22b1cf (plain) (blame)
1
2
3
4
5
6
7
8
9
#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;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月30日 11:43:25 +0000

AltStyle によって変換されたページ (->オリジナル) /