diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-11 20:21:02 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-11 20:21:02 +0000 |
commit | 042389355516356539b4c1fad80f07e91f28f498 (patch) | |
tree | a64c8855d038918ad26334051725e80fb581ef60 /gcc/real.h | |
parent | 0a9c8266b308ffd222f2c503d43bdfd72605ffb2 (diff) | |
download | gcc-042389355516356539b4c1fad80f07e91f28f498.tar.gz |
2000-06-09 Rodney Brown <RodneyBrown@mynd.com>
* mcore-protos.h: discards const warning removal.
* mcore.c: discards const warning removal.
2000-06-09 Kazu Hirata <kazu@hxi.com>
* config/h8300/lib1funcs.asm: Declare the machine architecture at
the beginning of the file.
2000-06-09 J. David Anglin <dave@hiauly1.hia.nrc.ca>
* real.h: Add prototype for ldexp.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34496 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.h')
-rw-r--r-- | gcc/real.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/real.h b/gcc/real.h index a85ca741120..ccd0541a1fa 100644 --- a/gcc/real.h +++ b/gcc/real.h @@ -359,7 +359,7 @@ do { \ /* Scale X by Y powers of 2. */ #ifndef REAL_VALUE_LDEXP #define REAL_VALUE_LDEXP(x, y) ldexp (x, y) -extern double ldexp (); +extern double ldexp PARAMS ((double, int)); #endif /* Convert the string X to a floating-point value. */ |