blob: 7c2816819ffcf2aeecb7a0d1530ee2d9b8ac7b30 [file] [log] [blame]
//===-- Implementation of fmaxf 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/fmaxf.h"
#include "src/__support/math/fmaxf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, fmaxf, (float x, float y)) {
return math::fmaxf(x, y);
}
} // namespace LIBC_NAMESPACE_DECL