diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 23:14:53 +0100 |
|---|---|---|
| committer | Kacper <kacper@mail.openlinux.dev> | 2025-12-09 23:14:53 +0100 |
| commit | 169daa11155988a210fac949297381743f3cb400 (patch) | |
| tree | 602ef5df5ae9ea075ab3d5dac3c8ad60da1ea2cc /lib/libm/expf.c | |
| parent | 4e2112e165fdd94dee58378e3ea32892f3710cd7 (diff) | |
feat: clang-tidy fixes
Diffstat (limited to 'lib/libm/expf.c')
| -rw-r--r-- | lib/libm/expf.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/libm/expf.c b/lib/libm/expf.c index 53108c44..419bfe77 100644 --- a/lib/libm/expf.c +++ b/lib/libm/expf.c @@ -5,10 +5,11 @@ * SPDX-License-Identifier: MIT */ -#include <math.h> -#include <stdint.h> -#include "libm.h" -#include "exp2f_data.h" +#include "exp2f_data.h" // for __exp2f_data, exp2f_data, EXP2F_TABLE_BITS +#include "libm.h" // for asuint, __math_oflowf, __math_uflowf, eval_a... + +#include <math.h> // for double_t, INFINITY, expf +#include <stdint.h> // for uint32_t, uint64_t /* EXP2F_TABLE_BITS = 5 |
