summaryrefslogtreecommitdiff
path: root/sysdeps/generic
diff options
context:
space:
mode:
authorSiddhesh Poyarekar <siddhesh@redhat.com>2013-10-08 11:50:17 +0530
committerSiddhesh Poyarekar <siddhesh@redhat.com>2013-10-08 11:50:17 +0530
commit09544cbcd6ef9e5ea2553c8b410dd55712171c33 (patch)
tree6b5139575fab1bff9be356dc41c55c446d70e5e4 /sysdeps/generic
parent7602d070dca35a848aff1d72cf0724f02df72f62 (diff)
Consolidate multiple precision sin/cos functions
Diffstat (limited to 'sysdeps/generic')
-rw-r--r--sysdeps/generic/math_private.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/generic/math_private.h b/sysdeps/generic/math_private.h
index c0fc03d38d..9b881a3e76 100644
--- a/sysdeps/generic/math_private.h
+++ b/sysdeps/generic/math_private.h
@@ -356,10 +356,8 @@ extern void __dubcos (double __x, double __dx, double __v[]);
extern double __halfulp (double __x, double __y);
extern double __sin32 (double __x, double __res, double __res1);
extern double __cos32 (double __x, double __res, double __res1);
-extern double __mpsin (double __x, double __dx);
-extern double __mpcos (double __x, double __dx);
-extern double __mpsin1 (double __x);
-extern double __mpcos1 (double __x);
+extern double __mpsin (double __x, double __dx, bool __range_reduce);
+extern double __mpcos (double __x, double __dx, bool __range_reduce);
extern double __slowexp (double __x);
extern double __slowpow (double __x, double __y, double __z);
extern void __docos (double __x, double __dx, double __v[]);