* libmath/stubs.c (powf): Fix typo.

From-SVN: r43503
This commit is contained in:
Gabriel Dos Reis 2001-06-22 08:57:02 +00:00 committed by Gabriel Dos Reis
parent 1a79c40144
commit 8b8d3a3451
2 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@
* libmath/stubs.c: New file.
(tanhf): Fix typo.
(powf): Likewise.
* libmath/Makefile.am (libmath_la_SOURCES): Add.
* libmath/Makefile.in. Regenerate.

View File

@ -72,9 +72,9 @@ log10f(float x)
#ifndef _GLIBCPP_HAVE_POWF
float
powf(float x)
powf(float x, float y)
{
return (float) pow(x);
return (float) pow(x, y);
}
#endif