fabsf.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/fabsf.c
blob: 4efc8d686dcc49e9c4d1c1af5159f042bf5a90d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <math.h>
#include <stdint.h>
float fabsf(float x)
{
	union {float f; uint32_t i;} u = {x};
	u.i &= 0x7fffffff;
	return u.f;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月07日 05:35:00 +0000

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