diff options
author | Andreas Tobler <a.tobler@schweiz.ch> | 2005-03-05 08:47:58 +0100 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2005-03-05 08:47:58 +0100 |
commit | 2fdedf0462d881d8cd9aad3dbf8f93befd26c9fe (patch) | |
tree | 5eb3e1c27dd3591217a331fee7575b425c5c8de6 /libjava/jawt.c | |
parent | 537a2904e71f46dce47e2cbcd5b90b59b974568f (diff) | |
download | gcc-2fdedf0462d881d8cd9aad3dbf8f93befd26c9fe.zip gcc-2fdedf0462d881d8cd9aad3dbf8f93befd26c9fe.tar.gz gcc-2fdedf0462d881d8cd9aad3dbf8f93befd26c9fe.tar.bz2 |
dtoa.c (_dtoa_r): Initialize variables ilim, ilim1 and spec_case.
2005-03-05 Andreas Tobler <a.tobler@schweiz.ch>
* java/lang/dtoa.c (_dtoa_r): Initialize variables ilim, ilim1 and
spec_case. Initialize pointer mlo.
* java/lang/strtod.c (_strtod_r): Initialize pointers bb, bd, ds and
delta.
* java/lang/e_asin.c (__ieee754_asin): Initialize variable t.
* java/lang/e_exp.c (__ieee754_exp): Initialize variables hi, lo
and k.
* java/lang/e_rem_pio2.c (__ieee754_rem_pio2): Initialize
uninitialized variable z.
* gnu/java/net/natPlainDatagramSocketImplPosix.cc (mcastGrp): Ifdef
possible unused variables.
* gnu/java/nio/natPipeImplPosix.cc (init): Remove self.
* jawt.c: Include <stdlib.h> to fix implict declaration of malloc.
From-SVN: r95925
Diffstat (limited to 'libjava/jawt.c')
-rw-r--r-- | libjava/jawt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/jawt.c b/libjava/jawt.c index 08cd78c..c0d65b8 100644 --- a/libjava/jawt.c +++ b/libjava/jawt.c @@ -7,7 +7,7 @@ it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. - + GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU @@ -35,7 +35,7 @@ obligated to do so. If you do not wish to do so, delete this exception statement from your version. */ - +#include <stdlib.h> #include <jni.h> #include <jawt.h> #include <jawt_md.h> |