diff options
Diffstat (limited to 'newlib/libc')
-rw-r--r-- | newlib/libc/misc/dprintf.c | 5 | ||||
-rw-r--r-- | newlib/libc/stdlib/dtoa.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdlib/ldtoa.c | 3 |
3 files changed, 6 insertions, 4 deletions
diff --git a/newlib/libc/misc/dprintf.c b/newlib/libc/misc/dprintf.c index 071d177ca..0b780f59b 100644 --- a/newlib/libc/misc/dprintf.c +++ b/newlib/libc/misc/dprintf.c @@ -15,7 +15,10 @@ #include "varargs.h" #endif +#if 0 static char *parse_number (); +#endif + static long get_number (); static void print_number (); static void write_char (); @@ -147,6 +150,7 @@ __dprintf (fmt, va_alist) va_end (args); } +#if 0 /* Parse a positive decimal integer at S. FIXME: Was used in earlier version, but not currently used. Keep for now. */ @@ -167,6 +171,7 @@ parse_number (s, p) *p = x; return s; } +#endif /* Fetch the number at S of SIZE bytes. */ diff --git a/newlib/libc/stdlib/dtoa.c b/newlib/libc/stdlib/dtoa.c index c9be9ed51..62597c755 100644 --- a/newlib/libc/stdlib/dtoa.c +++ b/newlib/libc/stdlib/dtoa.c @@ -229,7 +229,7 @@ _DEFUN (_dtoa_r, int denorm; __ULong x; #endif - _Bigint *b, *b1, *delta, *mlo, *mhi, *S; + _Bigint *b, *b1, *delta, *mlo = NULL, *mhi, *S; double ds; char *s, *s0; diff --git a/newlib/libc/stdlib/ldtoa.c b/newlib/libc/stdlib/ldtoa.c index 0a4c3230f..da652dd42 100644 --- a/newlib/libc/stdlib/ldtoa.c +++ b/newlib/libc/stdlib/ldtoa.c @@ -2838,11 +2838,8 @@ int _ldcheck (long double *d) { unsigned short e[NI]; -char *s, *p; -int k; LDPARMS rnd; LDPARMS *ldp = &rnd; -char *outstr; rnd.rlast = -1; rnd.rndprc = NBITS; |