aboutsummaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/ieee754/dbl-64/e_sqrt.c2
-rw-r--r--sysdeps/ieee754/dbl-64/uroot.h8
2 files changed, 5 insertions, 5 deletions
diff --git a/sysdeps/ieee754/dbl-64/e_sqrt.c b/sysdeps/ieee754/dbl-64/e_sqrt.c
index e7ed1c2..83df545 100644
--- a/sysdeps/ieee754/dbl-64/e_sqrt.c
+++ b/sysdeps/ieee754/dbl-64/e_sqrt.c
@@ -52,7 +52,7 @@ double __ieee754_sqrt(double x) {
rt3 = 3.12523626554518656309172508769531E-01;
static const double big = 134217728.0, big1 = 134217729.0;
double y,t,del,res,res1,hy,z,zz,p,hx,tx,ty,s;
- mynumber a,b,c={0,0};
+ mynumber a,b,c={{0,0}};
int4 n,k;
a.x=x;
diff --git a/sysdeps/ieee754/dbl-64/uroot.h b/sysdeps/ieee754/dbl-64/uroot.h
index 8d22b9e..1ef7054 100644
--- a/sysdeps/ieee754/dbl-64/uroot.h
+++ b/sysdeps/ieee754/dbl-64/uroot.h
@@ -29,14 +29,14 @@
#ifdef BIG_ENDI
static const mynumber
-/**/ t512 = {0x5ff00000, 0x00000000 }, /* 2^512 */
-/**/ tm256 = {0x2ff00000, 0x00000000 }; /* 2^-256 */
+/**/ t512 = {{0x5ff00000, 0x00000000 }}, /* 2^512 */
+/**/ tm256 = {{0x2ff00000, 0x00000000 }}; /* 2^-256 */
#else
#ifdef LITTLE_ENDI
static const mynumber
-/**/ t512 = {0x00000000, 0x5ff00000 }, /* 2^512 */
-/**/ tm256 = {0x00000000, 0x2ff00000 }; /* 2^-256 */
+/**/ t512 = {{0x00000000, 0x5ff00000 }}, /* 2^512 */
+/**/ tm256 = {{0x00000000, 0x2ff00000 }}; /* 2^-256 */
#endif
#endif