mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-25 11:42:11 +00:00
LibM: Implement pow()
This commit is contained in:
parent
d8daa08359
commit
b8ac14a873
Notes:
sideshowbarker
2024-07-19 10:54:03 +09:00
Author: https://github.com/vkoskiv 🔰
Commit: b8ac14a873
Pull-request: https://github.com/SerenityOS/serenity/pull/862
1 changed files with 2 additions and 4 deletions
|
@ -60,10 +60,8 @@ double sin(double angle)
|
|||
|
||||
double pow(double x, double y)
|
||||
{
|
||||
(void)x;
|
||||
(void)y;
|
||||
ASSERT_NOT_REACHED();
|
||||
return 0;
|
||||
//FIXME: Extremely unlikely to be standards compliant.
|
||||
return exp(y * log(x));
|
||||
}
|
||||
|
||||
double ldexp(double, int exp)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue