// SPDX-License-Identifier: MIT
/*
* File: src/math/remainderf.rs
*
* The remainderf function.
*
* Author: HTG-YT
* Copyright (c) 2021 The LibM Team of the HaruxOS Project
*/#[no_mangle]pubextern"C"fnremainderf(x:f32, y:f32)->f32{libm::remainderf(x, y)}