diff options
author | Mițca Dumitru <dumitru0mitca@gmail.com> | 2021-03-14 19:56:42 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-14 21:43:08 +0100 |
commit | 1f1a4f488fa4b427b54d002bfea222b11d40f1fd (patch) | |
tree | 27623b1e2457650eb16e923b586e724d325a46e9 /Userland/Libraries/LibM | |
parent | 93c554f6bd5a40699058fe0d6e1796fe6cab3488 (diff) | |
download | serenity-1f1a4f488fa4b427b54d002bfea222b11d40f1fd.zip |
LibM: Declare ldexpl in math.h
It was already defined, but it wasn't declared in the header
Diffstat (limited to 'Userland/Libraries/LibM')
-rw-r--r-- | Userland/Libraries/LibM/math.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibM/math.h b/Userland/Libraries/LibM/math.h index 31c0e0a5cc..f46670d565 100644 --- a/Userland/Libraries/LibM/math.h +++ b/Userland/Libraries/LibM/math.h @@ -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; |