diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-10 20:02:47 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-10 20:02:47 +0000 |
commit | 7c80a0c83961086a23fca25698a90e80d31c162b (patch) | |
tree | 21c222f9547fd52840d088697f88e9bb8c604a83 /libjava/java/lang/mprec.h | |
parent | b8667333867d541aad3d5ca72f575ce05dddfdbf (diff) | |
download | gcc-7c80a0c83961086a23fca25698a90e80d31c162b.tar.gz |
2000-01-10 Jeff Sturm <jsturm@sigma6.com>
* java/lang/natMath.cc (pow): Cast args to `double', not
`jdouble'.
(atan2): Likewise.
(IEEEremainder): Likewise.
* java/lang/mprec.h: Don't wrap includes in `extern "C"'.
* java/lang/fdlibm.h: Don't wrap includes in `extern "C"'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31305 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/lang/mprec.h')
-rw-r--r-- | libjava/java/lang/mprec.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/libjava/java/lang/mprec.h b/libjava/java/lang/mprec.h index fbfba4c3ba0..61d9d50dead 100644 --- a/libjava/java/lang/mprec.h +++ b/libjava/java/lang/mprec.h @@ -2,7 +2,7 @@ * * The author of this software is David M. Gay. * - * Copyright (c) 1991 by AT&T. + * Copyright (c) 1991, 2000 by AT&T. * * Permission to use, copy, modify, and distribute this software for any * purpose without fee is hereby granted, provided that this entire notice @@ -26,10 +26,6 @@ dmg@research.att.com or research!dmg */ -#ifdef __cplusplus -extern "C" { -#endif - #include <config.h> #include "ieeefp.h" @@ -51,6 +47,9 @@ extern "C" { #include <sys/config.h> #endif +#ifdef __cplusplus +extern "C" { +#endif /* ISO C9X int type declarations */ |