mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:57:35 +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:
parent
2ee39ed5f0
commit
5208bc05ce
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue