Add log implementation.

Fixes rust-lang/libm#23
This commit is contained in:
Opal
2018-07-14 16:59:27 +12:00
parent 827eed6f5d
commit 83673acaa4
4 changed files with 120 additions and 6 deletions

View File

@@ -15,6 +15,7 @@ mod floorf;
mod fmodf;
mod hypot;
mod hypotf;
mod log;
mod log10;
mod log10f;
mod log2;
@@ -34,7 +35,7 @@ mod truncf;
pub use self::{
ceilf::ceilf, expf::expf, fabs::fabs, fabsf::fabsf, floor::floor, floorf::floorf, fmodf::fmodf,
hypot::hypot, hypotf::hypotf, log10::log10, log10f::log10f, log2::log2, log2f::log2f,
hypot::hypot, hypotf::hypotf, log::log, log10::log10, log10f::log10f, log2::log2, log2f::log2f,
logf::logf, powf::powf, round::round, roundf::roundf, scalbn::scalbn, scalbnf::scalbnf,
sqrt::sqrt, sqrtf::sqrtf, trunc::trunc, truncf::truncf,
};