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/exp10l.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/libm/exp10l.c') diff --git a/lib/libm/exp10l.c b/lib/libm/exp10l.c index 53915621..f0bf23d9 100644 --- a/lib/libm/exp10l.c +++ b/lib/libm/exp10l.c @@ -1,7 +1,8 @@ #define _GNU_SOURCE -#include -#include -#include "libm.h" +#include "libm.h" // for ldshape, ldshape::(anonymous), weak_alias + +#include // for LDBL_MANT_DIG, LDBL_MAX_EXP +#include // for exp2l, modfl, powl #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024 long double exp10l(long double x) -- cgit v1.2.3