xref: /llvm-project/libc/src/complex/conjf16.h (revision abd91023447d146f36357326fc97c458b49e40af)
178c2b6d4SShourya Goel //===-- Implementation header for conjf16 -----------------------*- C++ -*-===//
278c2b6d4SShourya Goel //
378c2b6d4SShourya Goel // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
478c2b6d4SShourya Goel // See https://llvm.org/LICENSE.txt for license information.
578c2b6d4SShourya Goel // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
678c2b6d4SShourya Goel //
778c2b6d4SShourya Goel //===----------------------------------------------------------------------===//
878c2b6d4SShourya Goel 
978c2b6d4SShourya Goel #ifndef LLVM_LIBC_SRC_COMPLEX_CONJF16_H
1078c2b6d4SShourya Goel #define LLVM_LIBC_SRC_COMPLEX_CONJF16_H
1178c2b6d4SShourya Goel 
1278c2b6d4SShourya Goel #include "src/__support/macros/config.h"
13*abd91023SShourya Goel #include "src/__support/macros/properties/complex_types.h"
1478c2b6d4SShourya Goel 
1578c2b6d4SShourya Goel namespace LIBC_NAMESPACE_DECL {
1678c2b6d4SShourya Goel 
1778c2b6d4SShourya Goel cfloat16 conjf16(cfloat16 x);
1878c2b6d4SShourya Goel 
1978c2b6d4SShourya Goel } // namespace LIBC_NAMESPACE_DECL
2078c2b6d4SShourya Goel 
2178c2b6d4SShourya Goel #endif // LLVM_LIBC_SRC_COMPLEX_CONJF16_H
22