blob: 6d6e52b61694f78f7c9c2cfa8f22c3dc4d703b42 [file]
//===-- Implementation of fminimum_mag_numf function-----------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "src/math/fminimum_mag_numf.h"
#include "src/__support/math/fminimum_mag_numf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, fminimum_mag_numf, (float x, float y)) {
return math::fminimum_mag_numf(x, y);
}
} // namespace LIBC_NAMESPACE_DECL