From: Waldemar Kozaczuk <[email protected]> Committer: Waldemar Kozaczuk <[email protected]> Branch: master
libc: added __log2f_finite() alias Signed-off-by: Waldemar Kozaczuk <[email protected]> --- diff --git a/libc/math/aliases.c b/libc/math/aliases.c --- a/libc/math/aliases.c +++ b/libc/math/aliases.c @@ -20,6 +20,11 @@ double __log2_finite(double x) return log2(x); } +double __log2f_finite(double x) +{ + return log2f(x); +} + double __log_finite(double x) { return log(x); -- You received this message because you are subscribed to the Google Groups "OSv Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/osv-dev/0000000000000043610596762cc1%40google.com.
