From aec945a708e385ff337fc0922917b57c78d16755 Mon Sep 17 00:00:00 2001 From: Goirad Date: Mon, 29 Apr 2019 14:42:14 -0700 Subject: [PATCH] Added missing fdim signature --- src/math.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/math.rs b/src/math.rs index dfdd99c..b619555 100644 --- a/src/math.rs +++ b/src/math.rs @@ -64,6 +64,7 @@ no_mangle! { fn cbrtf(n: f32) -> f32; fn coshf(n: f32) -> f32; fn expm1f(n: f32) -> f32; + fn fdim(a: f64, b: f64) -> f64; fn fdimf(a: f32, b: f32) -> f32; fn hypotf(x: f32, y: f32) -> f32; fn log1pf(n: f32) -> f32;