blob: aee5a6cab2b56d71b878e46ae70f41b139c525a7 [file] [log] [blame] [edit]
//===-- Single-precision tan 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/tanf.h"
#include "src/__support/math/tanf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, tanf, (float x)) { return math::tanf(x); }
} // namespace LIBC_NAMESPACE_DECL