From 169daa11155988a210fac949297381743f3cb400 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 23:14:53 +0100 Subject: feat: clang-tidy fixes --- lib/libm/atanhf.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/libm/atanhf.c') diff --git a/lib/libm/atanhf.c b/lib/libm/atanhf.c index d1026974..b4591890 100644 --- a/lib/libm/atanhf.c +++ b/lib/libm/atanhf.c @@ -1,4 +1,7 @@ -#include "libm.h" +#include "libm.h" // for FORCE_EVAL + +#include // for log1pf, atanhf, float_t +#include // for uint32_t /* atanh(x) = log((1+x)/(1-x))/2 = log1p(2x/(1-x))/2 ~= x + x^3/3 + o(x^5) */ float atanhf(float x) -- cgit v1.2.3