Browse Source

LibC: Fix typo: fgetround => fegetround

Daniel Bertalan 3 years ago
parent
commit
a221596614
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Libraries/LibC/float.h

+ 1 - 1
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