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