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/lgammaf_r.c | |
| parent | 4e2112e165fdd94dee58378e3ea32892f3710cd7 (diff) | |
feat: clang-tidy fixes
Diffstat (limited to 'lib/libm/lgammaf_r.c')
| -rw-r--r-- | lib/libm/lgammaf_r.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libm/lgammaf_r.c b/lib/libm/lgammaf_r.c index b1a02fb8..7cb25578 100644 --- a/lib/libm/lgammaf_r.c +++ b/lib/libm/lgammaf_r.c @@ -13,7 +13,10 @@ * ==================================================== */ -#include "libm.h" +#include "libm.h" // for __cosdf, __sindf, __lgammaf_r, weak_alias + +#include <math.h> // for logf, floorf, double_t +#include <stdint.h> // for uint32_t static const float pi = 3.1415927410e+00, /* 0x40490fdb */ a0 = 7.7215664089e-02, /* 0x3d9e233f */ |
