mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:57:35 +00:00
LibM: Declare ldexpl in math.h
It was already defined, but it wasn't declared in the header
This commit is contained in:
parent
93c554f6bd
commit
1f1a4f488f
1 changed files with 1 additions and 0 deletions
|
@ -222,6 +222,7 @@ long long llrintf(float) NOEXCEPT;
|
|||
long double frexpl(long double, int* exp) NOEXCEPT;
|
||||
double frexp(double, int* exp) NOEXCEPT;
|
||||
float frexpf(float, int* exp) NOEXCEPT;
|
||||
long double ldexpl(long double, int exp) NOEXCEPT;
|
||||
double ldexp(double, int exp) NOEXCEPT;
|
||||
float ldexpf(float, int exp) NOEXCEPT;
|
||||
long double modfl(long double, long double*) NOEXCEPT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue