2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libjava / java / lang / s_copysign.c
blob4804df130dc46d7d48abdea0ebe6a36f357077c2
2 /* @(#)s_copysign.c 5.1 93/09/24 */
3 /*
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
10 * is preserved.
11 * ====================================================
15 FUNCTION
16 <<copysign>>, <<copysignf>>---sign of <[y]>, magnitude of <[x]>
18 INDEX
19 copysign
20 INDEX
21 copysignf
23 ANSI_SYNOPSIS
24 #include <math.h>
25 double copysign (double <[x]>, double <[y]>);
26 float copysignf (float <[x]>, float <[y]>);
28 TRAD_SYNOPSIS
29 #include <math.h>
30 double copysign (<[x]>, <[y]>)
31 double <[x]>;
32 double <[y]>;
34 float copysignf (<[x]>, <[y]>)
35 float <[x]>;
36 float <[y]>;
38 DESCRIPTION
39 <<copysign>> constructs a number with the magnitude (absolute value)
40 of its first argument, <[x]>, and the sign of its second argument,
41 <[y]>.
43 <<copysignf>> does the same thing; the two functions differ only in
44 the type of their arguments and result.
46 RETURNS
47 <<copysign>> returns a <<double>> with the magnitude of
48 <[x]> and the sign of <[y]>.
49 <<copysignf>> returns a <<float>> with the magnitude of
50 <[x]> and the sign of <[y]>.
52 PORTABILITY
53 <<copysign>> is not required by either ANSI C or the System V Interface
54 Definition (Issue 2).
59 * copysign(double x, double y)
60 * copysign(x,y) returns a value with the magnitude of x and
61 * with the sign bit of y.
64 #include "fdlibm.h"
66 #ifndef _DOUBLE_IS_32BITS
68 #ifdef __STDC__
69 double copysign(double x, double y)
70 #else
71 double copysign(x,y)
72 double x,y;
73 #endif
75 uint32_t hx,hy;
76 GET_HIGH_WORD(hx,x);
77 GET_HIGH_WORD(hy,y);
78 SET_HIGH_WORD(x,(hx&0x7fffffff)|(hy&0x80000000));
79 return x;
82 #endif /* _DOUBLE_IS_32BITS */