fabsl.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/fabsl.c
blob: c4f36ec2810ce50a7f7129800fbaf6f398139f5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "libm.h"
#if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
long double fabsl(long double x)
{
	return fabs(x);
}
#elif (LDBL_MANT_DIG == 64 || LDBL_MANT_DIG == 113) && LDBL_MAX_EXP == 16384
long double fabsl(long double x)
{
	union ldshape u = {x};
	u.i.se &= 0x7fff;
	return u.f;
}
#endif
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月01日 20:55:28 +0000

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