123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #include <openlibm.h>
- #include "math_private.h"
- #include "fpmath.h"
- 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);
- }
|