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