externc_libm/math/
lgamma_r.rs

1// SPDX-License-Identifier: MIT
2/*
3 * File: src/math/lgamma_r.rs
4 *
5 * The lgamma_r function.
6 *
7 * Author: HTG-YT
8 * Copyright (c) 2021 The LibM Team of the HaruxOS Project
9 */
10
11#[no_mangle]
12pub extern "C" fn lgamma_r(x: f64) -> (f64, i32) {
13    libm::lgamma_r(x)
14}