about summary refs log tree commit diff
path: root/math/math_private.h
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2001-05-12 14:32:12 +0000
committerAndreas Jaeger <aj@suse.de>2001-05-12 14:32:12 +0000
commite859d1d90a420e66482deae0c3a7151347a90c82 (patch)
treec4224cc9daf379b4deb3e6455d00734af8631a12 /math/math_private.h
parent02eca23b081598bf87e5b55eaeb3610bdef53b65 (diff)
downloadglibc-e859d1d90a420e66482deae0c3a7151347a90c82.tar.gz
glibc-e859d1d90a420e66482deae0c3a7151347a90c82.tar.xz
glibc-e859d1d90a420e66482deae0c3a7151347a90c82.zip
Update.
2001-05-12  Andreas Jaeger  <aj@suse.de>

	* sysdeps/ieee754/dbl-64/e_asin.c: Include "math_private.h" for
	internal prototypes.
	* sysdeps/ieee754/dbl-64/s_atan.c: Likewise.
	* sysdeps/ieee754/dbl-64/e_sqrt.c: Likewise.
	* sysdeps/ieee754/dbl-64/e_remainder.c: Likewise.
	* sysdeps/ieee754/dbl-64/e_pow.c: Likewise.
	* sysdeps/ieee754/dbl-64/e_log.c: Likewise.
	* sysdeps/ieee754/dbl-64/e_exp.c: Likewise.
	* sysdeps/ieee754/dbl-64/e_atan2.c: Likewise.
	* sysdeps/generic/e_rem_pio2l.c: Likewise.
	(__ieee754_rem_pio2l): Fix prototype.

	* math/math_private.h (__copysign): Add internal prototype.
Diffstat (limited to 'math/math_private.h')
-rw-r--r--math/math_private.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/math/math_private.h b/math/math_private.h
index f3d1f233cf..eea7e34cf7 100644
--- a/math/math_private.h
+++ b/math/math_private.h
@@ -188,6 +188,9 @@ extern double __kernel_cos (double,double);
 extern double __kernel_tan (double,double,int);
 extern int    __kernel_rem_pio2 (double*,double*,int,int,int, const int32_t*);
 
+/* internal functions.  */
+extern double __copysign (double x, double __y);
+
 
 /* ieee style elementary float functions */
 extern float __ieee754_sqrtf (float);
@@ -220,6 +223,7 @@ extern float __ieee754_remainderf (float,float);
 extern int32_t __ieee754_rem_pio2f (float,float*);
 extern float __ieee754_scalbf (float,float);
 
+
 /* float versions of fdlibm kernel functions */
 extern float __kernel_sinf (float,float,int);
 extern float __kernel_cosf (float,float);