17395ef54Swldfngrs //===-- Implementation header for cospif16 ----------------------*- C++ -*-===// 27395ef54Swldfngrs // 37395ef54Swldfngrs // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 47395ef54Swldfngrs // See https://llvm.org/LICENSE.txt for license information. 57395ef54Swldfngrs // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 67395ef54Swldfngrs // 77395ef54Swldfngrs //===----------------------------------------------------------------------===// 87395ef54Swldfngrs 97395ef54Swldfngrs #ifndef LLVM_LIBC_SRC_MATH_COSPIF16_H 107395ef54Swldfngrs #define LLVM_LIBC_SRC_MATH_COSPIF16_H 117395ef54Swldfngrs 127395ef54Swldfngrs #include "src/__support/macros/config.h" 137395ef54Swldfngrs #include "src/__support/macros/properties/types.h" 147395ef54Swldfngrs 157395ef54Swldfngrs namespace LIBC_NAMESPACE_DECL { 167395ef54Swldfngrs 177395ef54Swldfngrs float16 cospif16(float16 x); 187395ef54Swldfngrs 197395ef54Swldfngrs } // namespace LIBC_NAMESPACE_DECL 207395ef54Swldfngrs 21*f7bb1290Swldfngrs #endif // LLVM_LIBC_SRC_MATH_COSPIF16_H 22