diff options
Diffstat (limited to 'src/math/__sin.c')
-rw-r--r-- | src/math/__sin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/__sin.c b/src/math/__sin.c index 9aead04b..40309496 100644 --- a/src/math/__sin.c +++ b/src/math/__sin.c @@ -51,7 +51,7 @@ S6 = 1.58969099521155010221e-10; /* 0x3DE5D93A, 0x5ACFD57C */ double __sin(double x, double y, int iy) { - double z,r,v,w; + double_t z,r,v,w; z = x*x; w = z*z; |