From 2d0f334e5d75f46e6db1887e80d9f79212c3368b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C8=9Bca=20Dumitru?= Date: Mon, 15 Mar 2021 21:21:07 +0200 Subject: [PATCH] LibM: Declare rintl in math.h --- Userland/Libraries/LibM/math.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Userland/Libraries/LibM/math.h b/Userland/Libraries/LibM/math.h index f0ca9d618a..f942ba124f 100644 --- a/Userland/Libraries/LibM/math.h +++ b/Userland/Libraries/LibM/math.h @@ -234,6 +234,7 @@ long long llround(double) NOEXCEPT; long long llroundd(long double) NOEXCEPT; float rintf(float) NOEXCEPT; double rint(double) NOEXCEPT; +long double rintl(long double) NOEXCEPT; long lrintl(long double) NOEXCEPT; long lrint(double) NOEXCEPT; long lrintf(float) NOEXCEPT;