adding ceilf and floorf for issues rust-lang/libm#56 and rust-lang/libm#54

This commit is contained in:
Jack Mott
2018-07-13 21:32:59 -05:00
parent e6576930ef
commit 6237ba2890
5 changed files with 65 additions and 6 deletions

View File

@@ -4,8 +4,10 @@ macro_rules! force_eval {
}
}
mod ceilf;
mod fabs;
mod fabsf;
mod floorf;
mod fmodf;
mod powf;
mod round;
@@ -24,8 +26,10 @@ mod hypotf;
//mod service;
pub use self::{
ceilf::ceilf,
fabs::fabs,
fabsf::fabsf,
floorf::floorf,
fmodf::fmodf,
powf::powf,
round::round,