2 /* @(#)s_copysign.c 5.1 93/09/24 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunPro, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
11 * ====================================================
16 <<copysign>>, <<copysignf>>---sign of <[y]>, magnitude of <[x]>
25 double copysign (double <[x]>, double <[y]>);
26 float copysignf (float <[x]>, float <[y]>);
29 <<copysign>> constructs a number with the magnitude (absolute value)
30 of its first argument, <[x]>, and the sign of its second argument,
33 <<copysignf>> does the same thing; the two functions differ only in
34 the type of their arguments and result.
37 <<copysign>> returns a <<double>> with the magnitude of
38 <[x]> and the sign of <[y]>.
39 <<copysignf>> returns a <<float>> with the magnitude of
40 <[x]> and the sign of <[y]>.
43 <<copysign>> is not required by either ANSI C or the System V Interface
49 * copysign(double x, double y)
50 * copysign(x,y) returns a value with the magnitude of x and
51 * with the sign bit of y.
56 #ifndef _DOUBLE_IS_32BITS
59 double copysign(double x
, double y
)
68 SET_HIGH_WORD(x
,(hx
&0x7fffffff)|(hy
&0x80000000));
72 #endif /* _DOUBLE_IS_32BITS */