diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-15 08:40:35 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-06-15 08:40:35 +0000 |
commit | 97844b15249cfb7e07cee640649b49e989519ecf (patch) | |
tree | d38b91436842cc4c2a0381e5ce0996da9a41ebf4 /libgfortran/c99_protos.h | |
parent | f242c8940a0e7ed03730abff3782eb256d13252f (diff) | |
download | gcc-97844b15249cfb7e07cee640649b49e989519ecf.tar.gz |
PR libfortran/21950
* intrinsics/c99_functions.c (scalbn): Provide fallback
implementation for scalbn.
* c99_protos.h: Prototype for scalbn.
* configure.ac: Add check for scalbn.
* configure: Regenerate.
* config.h.in: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@100974 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/c99_protos.h')
-rw-r--r-- | libgfortran/c99_protos.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libgfortran/c99_protos.h b/libgfortran/c99_protos.h index 521f205399a..4deb25ceed1 100644 --- a/libgfortran/c99_protos.h +++ b/libgfortran/c99_protos.h @@ -89,6 +89,10 @@ extern float logf(float); extern float log10f(float); #endif +#ifndef HAVE_SCALBN +extern double scalbn(double, int); +#endif + #ifndef HAVE_SCALBNF extern float scalbnf(float, int); #endif |