* libmath/stubs.c (powf): Fix typo.
From-SVN: r43503
This commit is contained in:
parent
1a79c40144
commit
8b8d3a3451
@ -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.
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user