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