mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibC: Fix typo in fenv.h
`FE_TOWARDSZERO` is actually spelled `FE_TOWARDZERO` (without the 'S')
This commit is contained in:
committed by
Andreas Kling
parent
50632af4de
commit
a13e8d49cf
@@ -157,7 +157,7 @@ int fegetround()
|
||||
|
||||
int fesetround(int rounding_mode)
|
||||
{
|
||||
if (rounding_mode < FE_TONEAREST || rounding_mode > FE_TOWARDSZERO)
|
||||
if (rounding_mode < FE_TONEAREST || rounding_mode > FE_TOWARDZERO)
|
||||
return 1;
|
||||
|
||||
auto control_word = read_control_word();
|
||||
|
||||
Reference in New Issue
Block a user