mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
LibM: Add naive implementation of copysign()
This commit is contained in:
@@ -742,4 +742,15 @@ long double nexttowardl(long double, long double) NOEXCEPT
|
||||
{
|
||||
TODO();
|
||||
}
|
||||
|
||||
double copysign(double x, double y)
|
||||
{
|
||||
if (x < 0 && y < 0)
|
||||
return x;
|
||||
if (x >= 0 && y < 0)
|
||||
return -x;
|
||||
if (x < 0 && y >= 0)
|
||||
return -x;
|
||||
return x;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -143,4 +143,6 @@ double nexttoward(double, long double) NOEXCEPT;
|
||||
float nexttowardf(float, long double) NOEXCEPT;
|
||||
long double nexttowardl(long double, long double) NOEXCEPT;
|
||||
|
||||
double copysign(double x, double y);
|
||||
|
||||
__END_DECLS
|
||||
|
||||
Reference in New Issue
Block a user