Implement round

This commit is contained in:
Michael Howell
2018-07-13 00:40:05 +00:00
parent 19ee60e7da
commit 50f9ad97a5
4 changed files with 44 additions and 1 deletions

View File

@@ -2,6 +2,7 @@ mod fabs;
mod fabsf;
mod fmodf;
mod powf;
mod round;
mod scalbnf;
mod sqrtf;
@@ -9,6 +10,7 @@ pub use self::fabs::fabs;
pub use self::fabsf::fabsf;
pub use self::fmodf::fmodf;
pub use self::powf::powf;
pub use self::round::round;
pub use self::scalbnf::scalbnf;
pub use self::sqrtf::sqrtf;