2001-04-02 Andreas Jaeger <aj@suse.de>
+ * sysdeps/ieee754/dbl-64/uroot.h: Add missing braces arount
+ initializers.
+ * sysdeps/ieee754/dbl-64/e_sqrt.c (__ieee754_sqrt): Likewise.
+
+ * elf/rtld.c (print_statistics)[!HP_TIMING_NONAVAIL]: Avoid
+ warning about unused variable.
+
* string/string.h (strndupa): Add cast for C++ conformance.
(strdupa): Likewise.
Fixes PR libc/2173, reported by tbrowder@home.com.
static void
print_statistics (void)
{
- char buf[200];
#ifndef HP_TIMING_NONAVAIL
+ char buf[200];
char *cp;
char *wp;
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;
#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