fix build errors

pull/1/head
HTG-YT 2021-08-07 17:14:30 +08:00
parent 99c9dde1d9
commit 05f9e20462
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,6 @@
*/
#[no_mangle]
pub extern "C" fn floor(x: f32) -> f32 {
pub extern "C" fn floorf(x: f32) -> f32 {
libm::floorf(x)
}