blob: 5bc87e85e8c33ba16a11f1918de1aabb6be5d36f [file] [log] [blame]
use super::lgamma_r;
pub fn lgamma(x: f64) -> f64 {
lgamma_r(x).0
}