diff options
Diffstat (limited to 'src/math/__sindf.c')
-rw-r--r-- | src/math/__sindf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |