fix build errors

This commit is contained in:
HTG-YT 2021-08-07 17:14:30 +08:00
parent ee94a462f8
commit fb04697e84

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)
}