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