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