mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
8 lines
174 B
C
8 lines
174 B
C
#include "libc/math/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;
|
|
}
|