12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #include <openlibm_math.h>
- #include "fpmath.h"
- #include "math_private.h"
- OLM_DLLEXPORT long double
- copysignl(long double x, long double y)
- {
- union IEEEl2bits ux, uy;
- ux.e = x;
- uy.e = y;
- ux.bits.sign = uy.bits.sign;
- return (ux.e);
- }
|