Skip to content

Commit

Permalink
libc: added __exp2_finite wrapper needed by newer libx265
Browse files Browse the repository at this point in the history
Signed-off-by: Waldemar Kozaczuk <[email protected]>
  • Loading branch information
wkozaczuk committed Aug 28, 2019
1 parent 7114af2 commit 8cb3ffe
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 @@ -5,6 +5,11 @@ double __exp_finite(double x)
return exp(x);
}

double __exp2_finite(double x)
{
return exp2(x);
}

double __log10_finite(double x)
{
return log10(x);
Expand Down

0 comments on commit 8cb3ffe

Please sign in to comment.