diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-07-15 18:26:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-07-15 18:26:25 +0000 |
commit | 3fe4dc4156af9255fe86b5040c2538e9d7f5459d (patch) | |
tree | 41035dba0db535ec39ee7b746c96e05958274dc4 /math | |
parent | 446d213c35105852d345b7cc72d71dd65d15d8ef (diff) | |
download | glibc-3fe4dc4156af9255fe86b5040c2538e9d7f5459d.tar.gz glibc-3fe4dc4156af9255fe86b5040c2538e9d7f5459d.tar.xz glibc-3fe4dc4156af9255fe86b5040c2538e9d7f5459d.zip |
Update.
1999-07-15 Jakub Jelinek <jj@ultra.linux.cz> * math/Makefile: Add t_sincosl and k_sincosl support routines. * math/math_private.h (__kernel_sincosl): New declaration. * sysdeps/generic/t_sincosl.c: New file. * sysdeps/generic/k_sincosl.c: New file. * sysdeps/ieee754/ldbl-128/k_cosl.c: New file. * sysdeps/ieee754/ldbl-128/k_sinl.c: New file. * sysdeps/ieee754/ldbl-128/k_sincosl.c: New file. * sysdeps/ieee754/ldbl-128/t_sincosl.c: New file. * sysdeps/ieee754/ldbl-128/e_rem_pio2l.c: New file. * sysdeps/ieee754/ldbl-128/s_sincosl.c (__sincosl): Use __kernel_sincosl. * sysdeps/ieee754/ldbl-128/math_ldbl.h (GET_LDOUBLE_LSW64): New definition.
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 3 | ||||
-rw-r--r-- | math/math_private.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/math/Makefile b/math/Makefile index e1b3431d19..d5434f79df 100644 --- a/math/Makefile +++ b/math/Makefile @@ -61,7 +61,8 @@ libm-routines = $(strip $(libm-support) $(libm-calls) \ $(patsubst %_rf,%f_r,$(libm-calls:=f)) \ $(long-m-$(long-double-fcts))) long-m-routines = $(patsubst %_rl,%l_r,$(libm-calls:=l)) -long-m-yes = $(long-m-routines) +long-m-support = t_sincosl k_sincosl +long-m-yes = $(long-m-routines) $(long-m-support) distribute += $(long-m-yes:=.c) # These functions are in libc instead of libm because __printf_fp diff --git a/math/math_private.h b/math/math_private.h index 35e3e4e7ca..29dbb46758 100644 --- a/math/math_private.h +++ b/math/math_private.h @@ -264,6 +264,8 @@ extern long double __ieee754_scalbl __P((long double,long double)); extern long double __kernel_sinl __P((long double,long double,int)); extern long double __kernel_cosl __P((long double,long double)); extern long double __kernel_tanl __P((long double,long double,int)); +extern void __kernel_sincosl __P((long double,long double, + long double *,long double *, int)); extern int __kernel_rem_pio2l __P((long double*,long double*,int,int, int,const int*)); |