summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibM
diff options
context:
space:
mode:
authorMițca Dumitru <dumitru0mitca@gmail.com>2021-03-14 19:56:42 +0200
committerAndreas Kling <kling@serenityos.org>2021-03-14 21:43:08 +0100
commit1f1a4f488fa4b427b54d002bfea222b11d40f1fd (patch)
tree27623b1e2457650eb16e923b586e724d325a46e9 /Userland/Libraries/LibM
parent93c554f6bd5a40699058fe0d6e1796fe6cab3488 (diff)
downloadserenity-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.h1
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;