1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

LibM: Add naive implementation of copysign()

This commit is contained in:
Andreas Kling 2021-03-05 20:46:25 +01:00
parent fc5b252010
commit 9f8a9dba0b
2 changed files with 13 additions and 0 deletions

View file

@ -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