mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:27:43 +00:00
LibM: Implement copysign for float and long double
This commit is contained in:
parent
87b61b0eef
commit
b274120b3c
2 changed files with 26 additions and 8 deletions
|
@ -170,6 +170,8 @@ float scalbnlf(float, long) NOEXCEPT;
|
|||
double scalbln(double, long) NOEXCEPT;
|
||||
long double scalblnl(long double, long) NOEXCEPT;
|
||||
|
||||
double copysign(double x, double y);
|
||||
float copysignf(float x, float y) NOEXCEPT;
|
||||
double copysign(double x, double y) NOEXCEPT;
|
||||
long double copysignl(long double x, long double y) NOEXCEPT;
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue