mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-03-23 05:46:06 +00:00
LibC: Don't include fenv.h from float.h
This fixes a build issue where `compiler-rt` tried to declare its own version of the `FE_*` macros, and included `float.h` in order to get the constants. `compiler-rt` tried to declare these as an enum, and failed with a syntax error when the constant's literal values were substituted.
This commit is contained in:
committed by
Gunnar Beutner
parent
2ee39ed5f0
commit
5208bc05ce
@@ -7,7 +7,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <fenv.h>
|
||||
// Defined in fenv.cpp, but we must not include fenv.h, so here's its prototype.
|
||||
int fgetround();
|
||||
|
||||
#define FLT_RADIX 2
|
||||
#define DECIMAL_DIG 21
|
||||
|
||||
Reference in New Issue
Block a user