Add gamma and ln_gamma functions to f32 and f64

This commit is contained in:
Andrew Kane 2023-07-31 07:41:50 -07:00
parent a17c7968b7
commit fcecaff16e
7 changed files with 158 additions and 1 deletions

View file

@ -30,4 +30,8 @@ extern "C" {
pub fn tanf(n: f32) -> f32;
pub fn tanh(n: f64) -> f64;
pub fn tanhf(n: f32) -> f32;
pub fn tgamma(n: f64) -> f64;
pub fn tgammaf(n: f32) -> f32;
pub fn lgamma_r(n: f64, s: &mut i32) -> f64;
pub fn lgammaf_r(n: f32, s: &mut i32) -> f32;
}