summaryrefslogtreecommitdiff
path: root/src/math/__cosdf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/__cosdf.c')
-rw-r--r--src/math/__cosdf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/__cosdf.c b/src/math/__cosdf.c
index a65f7f21..2124989b 100644
--- a/src/math/__cosdf.c
+++ b/src/math/__cosdf.c
@@ -25,7 +25,7 @@ C3 = 0x199342e0ee5069.0p-68; /* 0.0000243904487962774090654 */
float __cosdf(double x)
{
- double r, w, z;
+ double_t r, w, z;
/* Try to optimize for parallel evaluation as in __tandf.c. */
z = x*x;