X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fmath%2F__sindf.c;h=8fec2a3f660c627b9dd575f96601c9530dc9a67e;hp=83c0d7a5f8c277513fd09d6d64a7ea5b9a74079c;hb=e216951f509b71da193da2fc63e25b998740d58b;hpb=b69f695acedd4ce2798ef9ea28d834ceccc789bd diff --git a/src/math/__sindf.c b/src/math/__sindf.c index 83c0d7a5..8fec2a3f 100644 --- a/src/math/__sindf.c +++ b/src/math/__sindf.c @@ -25,7 +25,7 @@ S4 = 0x16cd878c3b46a7.0p-71; /* 0.0000027183114939898219064 */ float __sindf(double x) { - double r, s, w, z; + double_t r, s, w, z; /* Try to optimize for parallel evaluation as in __tandf.c. */ z = x*x;