diff options
Diffstat (limited to 'compiler-rt/lib/int_lib.h')
-rw-r--r-- | compiler-rt/lib/int_lib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/lib/int_lib.h b/compiler-rt/lib/int_lib.h index e265ced6014..9725f6e62a7 100644 --- a/compiler-rt/lib/int_lib.h +++ b/compiler-rt/lib/int_lib.h @@ -31,9 +31,13 @@ # define COMPILER_RT_ABI #endif +/* Include the standard compiler builtin headers we use functionality from. */ #include <limits.h> #include <stdint.h> #include <stdbool.h> +#include <float.h> + +/* Include the system math.h, which we use in a number of places. */ #include <math.h> /* If compiling for kernel use, call panic() instead of abort(). */ |