From a221596614cde869d0b0ef1036c2a9e9ba48f0c5 Mon Sep 17 00:00:00 2001 From: Daniel Bertalan Date: Sat, 8 Jan 2022 15:25:48 +0100 Subject: [PATCH] LibC: Fix typo: fgetround => fegetround --- Userland/Libraries/LibC/float.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibC/float.h b/Userland/Libraries/LibC/float.h index 086f38a4056bbd..e3843499c3babe 100644 --- a/Userland/Libraries/LibC/float.h +++ b/Userland/Libraries/LibC/float.h @@ -8,7 +8,7 @@ #pragma once // Defined in fenv.cpp, but we must not include fenv.h, so here's its prototype. -int fgetround(); +int fegetround(); #define FLT_RADIX 2 #define DECIMAL_DIG 21