X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2F__cosdf.c;h=2124989b3299e53893f2fc9267567e2e7738509b;hp=a65f7f21481643ffb2aaa40ed83b062162a338e2;hb=HEAD;hpb=0cbb65479147ecdaa664e88cc2a5a925f3de502f 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;