diff options
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*)); |