xref: /llvm-project/libc/src/math/tanhf16.h (revision fdd7c0353fa2d48239e5ac0c1cafb7f31fca4206)
1*fdd7c035SOverMighty //===-- Implementation header for tanhf16 -----------------------*- C++ -*-===//
2*fdd7c035SOverMighty //
3*fdd7c035SOverMighty // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*fdd7c035SOverMighty // See https://llvm.org/LICENSE.txt for license information.
5*fdd7c035SOverMighty // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*fdd7c035SOverMighty //
7*fdd7c035SOverMighty //===----------------------------------------------------------------------===//
8*fdd7c035SOverMighty 
9*fdd7c035SOverMighty #ifndef LLVM_LIBC_SRC_MATH_TANHF16_H
10*fdd7c035SOverMighty #define LLVM_LIBC_SRC_MATH_TANHF16_H
11*fdd7c035SOverMighty 
12*fdd7c035SOverMighty #include "src/__support/macros/config.h"
13*fdd7c035SOverMighty #include "src/__support/macros/properties/types.h"
14*fdd7c035SOverMighty 
15*fdd7c035SOverMighty namespace LIBC_NAMESPACE_DECL {
16*fdd7c035SOverMighty 
17*fdd7c035SOverMighty float16 tanhf16(float16 x);
18*fdd7c035SOverMighty 
19*fdd7c035SOverMighty } // namespace LIBC_NAMESPACE_DECL
20*fdd7c035SOverMighty 
21*fdd7c035SOverMighty #endif // LLVM_LIBC_SRC_MATH_TANHF16_H
22