From 1f1a4f488fa4b427b54d002bfea222b11d40f1fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C8=9Bca=20Dumitru?= Date: Sun, 14 Mar 2021 19:56:42 +0200 Subject: LibM: Declare ldexpl in math.h It was already defined, but it wasn't declared in the header --- Userland/Libraries/LibM/math.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Userland/Libraries/LibM') 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; -- cgit v1.2.3