Skip to content
This repository was archived by the owner on Apr 28, 2025. It is now read-only.

Commit 6cb1d6e

Browse files
committed
Move src/math/floorf.rs -> src/musl/floorf.rs
1 parent f9b4734 commit 6cb1d6e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/musl.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
mod floorf;
2+
3+
pub use self::floorf::floorf;

src/math/floorf.rs renamed to src/musl/floorf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use core::f32;
22

3-
/// Floor (f64)
3+
/// Floor (f32)
44
///
55
/// Finds the nearest integer less than or equal to `x`.
66
#[inline]

0 commit comments

Comments
 (0)