From 2bb0c5a2152232345c0fbbafeeade5797857112f Mon Sep 17 00:00:00 2001 From: HTG-YT Date: Sat, 7 Aug 2021 20:16:46 +0800 Subject: [PATCH] fix build error --- src/math/jnf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math/jnf.rs b/src/math/jnf.rs index f758186..d417dfb 100644 --- a/src/math/jnf.rs +++ b/src/math/jnf.rs @@ -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) } \ No newline at end of file