From 00ddc1c93753a25b7b6efbbaca32a49f99b80d86 Mon Sep 17 00:00:00 2001 From: Shiv Upadhyay Date: Fri, 3 Apr 2026 13:05:40 -0400 Subject: [PATCH] fix linking error because this function won't have a symbol in the resulting library --- src/fmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmt.c b/src/fmt.c index 820f053..30ee567 100644 --- a/src/fmt.c +++ b/src/fmt.c @@ -493,7 +493,7 @@ void qgamma_inc_like(__float128 *f, __float128 t, int m) } } -inline __float128 powq_(__float128 base, int exponent) +static inline __float128 powq_(__float128 base, int exponent) { int i; __float128 result = 1.q;