From 5ed210f0f3a143a0d422aabaa09ca7b12da4b01d Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Wed, 28 Dec 2022 18:29:50 +0100 Subject: Added log10l wrapped function to libm (for #436) --- src/wrapped/wrappedlibm_private.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/wrapped/wrappedlibm_private.h b/src/wrapped/wrappedlibm_private.h index 55287c95..9610b403 100755 --- a/src/wrapped/wrappedlibm_private.h +++ b/src/wrapped/wrappedlibm_private.h @@ -318,7 +318,11 @@ GOW(log10, dFd) GOW(log10f, fFf) GOM(__log10f_finite, fFf) GOM(__log10_finite, dFd) -// log10l // Weak +#ifdef HAVE_LD80BITS +GOW(log10l, DFD) +#else +GO2(log10l, KFK, log10) //Weak +#endif GOW(log1p, dFd) GOW(log1pf, fFf) // log1pl // Weak -- cgit 1.4.1