implement roundf
This commit is contained in:
@@ -1,7 +1,9 @@
|
||||
macro_rules! force_eval {
|
||||
($e:expr) => {
|
||||
unsafe { ::core::ptr::read_volatile(&$e); }
|
||||
}
|
||||
unsafe {
|
||||
::core::ptr::read_volatile(&$e);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
mod fabs;
|
||||
@@ -9,6 +11,7 @@ mod fabsf;
|
||||
mod fmodf;
|
||||
mod powf;
|
||||
mod round;
|
||||
mod roundf;
|
||||
mod scalbnf;
|
||||
mod sqrtf;
|
||||
|
||||
@@ -17,6 +20,7 @@ pub use self::fabsf::fabsf;
|
||||
pub use self::fmodf::fmodf;
|
||||
pub use self::powf::powf;
|
||||
pub use self::round::round;
|
||||
pub use self::roundf::roundf;
|
||||
pub use self::scalbnf::scalbnf;
|
||||
pub use self::sqrtf::sqrtf;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user