Merge branch 'master' into master

This commit is contained in:
Zgarbul Andrey
2018-07-14 09:38:50 +03:00
committed by GitHub
4 changed files with 120 additions and 6 deletions

View File

@@ -16,6 +16,7 @@ mod floorf;
mod fmodf;
mod hypot;
mod hypotf;
mod log;
mod log10;
mod log10f;
mod log2;
@@ -33,7 +34,7 @@ mod truncf;
pub use self::{
ceilf::ceilf, cosf::cosf, expf::expf, fabs::fabs, fabsf::fabsf, floor::floor, floorf::floorf,
fmodf::fmodf, hypot::hypot, hypotf::hypotf, log10::log10, log10f::log10f, log2::log2,
fmodf::fmodf, 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,
};