rt: Define exp10 on Android

LLVM appears to generate calls to exp10 on ARM and bionic does not
define it.
This commit is contained in:
Brian Anderson 2014-01-03 21:29:28 -08:00
parent a1cb8dc30c
commit bc78d86985
1 changed files with 5 additions and 0 deletions

View File

@ -28,6 +28,11 @@ double log2( double n )
return log( n ) / log( 2 );
}
double exp10( double x )
{
return pow( 10, x );
}
void telldir()
{
}