2001-06-22 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
* libmath/stubs.c: New file.
+ (tanhf): Fix typo.
+
* libmath/Makefile.am (libmath_la_SOURCES): Add.
* libmath/Makefile.in. Regenerate.
#include <bits/c++config.h>
#if !defined(_GLIBCPP_HAVE_COSF) && !defined(_GLIBCPP_HAVE___BUILTIN_COSF)
-extern float
+float
cosf(float x)
{
return (float) cos(x);
#endif
#ifndef _GLIBCPP_HAVE_COSHF
-extern float
+float
coshf(float x)
{
return (float) cosh(x);
#endif
#ifndef _GLIBCPP_HAVE_EXPF
-extern float
+float
expf(float x)
{
return (float) exp(x);
#endif
#ifndef _GLIBCPP_HAVE_LOGF
-extern float
+float
logf(float x)
{
return (float) log(x);
#endif
#ifndef _GLIBCPP_HAVE_LOG10F
-extern float
+float
log10f(float x)
{
return (float) log10(x);
#endif
#ifndef _GLIBCPP_HAVE_POWF
-extern float
+float
powf(float x)
{
return (float) pow(x);
#endif
#if !defined(_GLIBCPP_HAVE_SINF) && !defined(_GLIBCPP_HAVE___BUILTIN_SINF)
-extern float
+float
sinf(float x)
{
return (float) sin(x);
#endif
#ifndef _GLIBCPP_HAVE_SINHF
-extern float
+float
sinhf(float x)
{
return (float) sinh(x);
#endif
#ifndef _GLIBCPP_HAVE_TANF
-extern float
+float
tanf(float x)
{
return (float) tanf(x);
#endif
#ifndef _GLIBCPP_HAVE_TANHF
-extern float
+float
tanhf(float x)
{
- return (float) tanhf(x);
+ return (float) tanh(x);
}
#endif