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