diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2002-02-05 17:14:35 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2002-02-05 17:14:35 +0000 |
commit | 27478365a283d54112eac1bb0b3af7686cc59160 (patch) | |
tree | 1cf828ec78061ad99065569f4e6f29f9ba3709a3 /newlib/libc/stdlib/dtoa.c | |
parent | 1c4bd58770c6131257b8830f2354944bfe3122b1 (diff) | |
download | cygnal-27478365a283d54112eac1bb0b3af7686cc59160.tar.gz cygnal-27478365a283d54112eac1bb0b3af7686cc59160.tar.bz2 cygnal-27478365a283d54112eac1bb0b3af7686cc59160.zip |
2002-02-05 Manik Raina <manik@cisco.com>
* libc/misc/dprintf (parse_number): #if 0 unused function.
* libc/stdlib/ldtoa.c (_ldcheck): Remove unused local variables
s, p, k, and outstr.
* libc/stdlib/dtoa.c (_dtoa_r): Initialize mlo.
Diffstat (limited to 'newlib/libc/stdlib/dtoa.c')
-rw-r--r-- | newlib/libc/stdlib/dtoa.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |