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