diff options
Diffstat (limited to 'lib/libm/hypot.c')
| -rw-r--r-- | lib/libm/hypot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libm/hypot.c b/lib/libm/hypot.c index 5cee8345..744c7bb8 100644 --- a/lib/libm/hypot.c +++ b/lib/libm/hypot.c @@ -1,6 +1,6 @@ -#include <math.h> -#include <stdint.h> -#include <float.h> +#include <float.h> // for FLT_EVAL_METHOD, LDBL_MANT_DIG +#include <math.h> // for double_t, hypot, sqrt +#include <stdint.h> // for uint64_t #if FLT_EVAL_METHOD > 1U && LDBL_MANT_DIG == 64 #define SPLIT (0x1p32 + 1) |
