77: adding ceilf and floorf  r=japaric a=jackmott

Finishes issues rust-lang/libm#56  and rust-lang/libm#54 

Co-authored-by: Jack Mott <jack.mott@gmail.com>
This commit is contained in:
bors[bot]
2018-07-14 02:35:57 +00:00
5 changed files with 65 additions and 6 deletions

View File

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