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