diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-08-28 00:14:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-08-28 00:14:28 +0000 |
commit | abcb00dabb45898628edba9ee13e499977714579 (patch) | |
tree | 6e740f2b66f0935459bc462bcbc8b922d79baf57 /math | |
parent | ea493b56b434b21190e6fe39212d6d15e4eecdf0 (diff) | |
download | glibc-abcb00dabb45898628edba9ee13e499977714579.tar glibc-abcb00dabb45898628edba9ee13e499977714579.tar.gz glibc-abcb00dabb45898628edba9ee13e499977714579.tar.bz2 glibc-abcb00dabb45898628edba9ee13e499977714579.zip |
Update.
* math/math_private.h: Declare __copysignf.
* sysdeps/ieee754/flt-32/s_scalbnf.c: Use __copysignf instead of
copysignf.
Diffstat (limited to 'math')
-rw-r--r-- | math/math_private.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/math/math_private.h b/math/math_private.h index 84c1d9ad34..f545841df0 100644 --- a/math/math_private.h +++ b/math/math_private.h @@ -232,6 +232,9 @@ extern float __kernel_cosf (float,float); extern float __kernel_tanf (float,float,int); extern int __kernel_rem_pio2f (float*,float*,int,int,int, const int32_t*); +/* internal functions. */ +extern float __copysignf (float x, float __y); + /* ieee style elementary long double functions */ extern long double __ieee754_sqrtl (long double); |