diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-16 22:31:28 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-11-16 22:31:28 +0000 |
commit | 6d516d29c28c42d6135c5cee94674741bb12a481 (patch) | |
tree | 4888b0b0ef26e89b144de8f9e6446cfb15809d97 /libgfortran/config.h.in | |
parent | f30aaeef276ebb4284645988b8d5d74048e69699 (diff) | |
download | gcc-6d516d29c28c42d6135c5cee94674741bb12a481.tar.gz |
PR libfortran/33583
PR libfortran/33698
* intrinsics/c99_functions.c (tgamma, tgammaf, lgamma, lgammaf):
New fallback functions.
* c99_protos.h (tgamma, tgammaf, lgamma, lgammaf): New prototypes.
* configure.ac: Add checks for tgamma, tgammaf, tgammal, lgamma,
lgammaf and lgammal.
* config.h.in: Regenerate.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@130245 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/config.h.in')
-rw-r--r-- | libgfortran/config.h.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libgfortran/config.h.in b/libgfortran/config.h.in index ffa419cc76b..72d46d9e365 100644 --- a/libgfortran/config.h.in +++ b/libgfortran/config.h.in @@ -483,6 +483,15 @@ /* libm includes ldexpl */ #undef HAVE_LDEXPL +/* libm includes lgamma */ +#undef HAVE_LGAMMA + +/* libm includes lgammaf */ +#undef HAVE_LGAMMAF + +/* libm includes lgammal */ +#undef HAVE_LGAMMAL + /* Define to 1 if you have the `link' function. */ #undef HAVE_LINK @@ -705,6 +714,15 @@ /* libm includes tanl */ #undef HAVE_TANL +/* libm includes tgamma */ +#undef HAVE_TGAMMA + +/* libm includes tgammaf */ +#undef HAVE_TGAMMAF + +/* libm includes tgammal */ +#undef HAVE_TGAMMAL + /* Define to 1 if you have the `time' function. */ #undef HAVE_TIME |