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