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