copysign.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/copysign.c
blob: b09331b6876e74ebb5c12bdc9a0ee183ee5cc136 (plain) (blame)
1
2
3
4
5
6
7
8
#include "libm.h"
double copysign(double x, double y) {
	union {double f; uint64_t i;} ux={x}, uy={y};
	ux.i &= -1ULL/2;
	ux.i |= uy.i & 1ULL<<63;
	return ux.f;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年10月02日 16:16:44 +0000

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