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