Skip to content

Commit

Permalink
libc: added __log2f_finite() alias
Browse files Browse the repository at this point in the history
Signed-off-by: Waldemar Kozaczuk <[email protected]>
  • Loading branch information
wkozaczuk committed Nov 3, 2019
1 parent 56baf71 commit cccc7d4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libc/math/aliases.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit cccc7d4

Please sign in to comment.