diff options
Diffstat (limited to 'sysdeps/ieee754/dbl-64/uroot.h')
-rw-r--r-- | sysdeps/ieee754/dbl-64/uroot.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/ieee754/dbl-64/uroot.h b/sysdeps/ieee754/dbl-64/uroot.h index 8d22b9e242..1ef7054ec0 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 |