Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libm/common/sinf.c')
-rw-r--r--newlib/libm/common/sinf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libm/common/sinf.c b/newlib/libm/common/sinf.c
index 715bdc8d0..c2e61039b 100644
--- a/newlib/libm/common/sinf.c
+++ b/newlib/libm/common/sinf.c
@@ -42,7 +42,7 @@ sinf (float y)
double x = y;
double s;
int n;
- sincos_t *p = &sincosf_table[0];
+ const sincos_t *p = &__sincosf_table[0];
if (abstop12 (y) < abstop12 (pio4))
{
@@ -66,7 +66,7 @@ sinf (float y)
s = p->sign[n & 3];
if (n & 2)
- p = &sincosf_table[1];
+ p = &__sincosf_table[1];
return sinf_poly (x * s, x * x, p, n);
}
@@ -81,7 +81,7 @@ sinf (float y)
s = p->sign[(n + sign) & 3];
if ((n + sign) & 2)
- p = &sincosf_table[1];
+ p = &__sincosf_table[1];
return sinf_poly (x * s, x * x, p, n);
}