externc_libm/math/
fmaf.rs

1// SPDX-License-Identifier: MIT
2/*
3 * File: src/math/fmaf.rs
4 *
5 * The fmaf 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 fmaf(x: f32, y: f32, z: f32) -> f32 {
13    libm::fmaf(x, y, z)
14}