fix build error

This commit is contained in:
HTG-YT 2021-08-07 20:16:46 +08:00
parent 052849680b
commit 2bb0c5a215

View file

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