13f906f51Slntue //===-- Implementation header for copysignf128 ------------------*- C++ -*-===// 23f906f51Slntue // 33f906f51Slntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 43f906f51Slntue // See https://llvm.org/LICENSE.txt for license information. 53f906f51Slntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 63f906f51Slntue // 73f906f51Slntue //===----------------------------------------------------------------------===// 83f906f51Slntue 93f906f51Slntue #ifndef LLVM_LIBC_SRC_MATH_COPYSIGNF128_H 103f906f51Slntue #define LLVM_LIBC_SRC_MATH_COPYSIGNF128_H 113f906f51Slntue 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1353bd411eSGuillaume Chatelet #include "src/__support/macros/properties/types.h" 143f906f51Slntue 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 163f906f51Slntue 173f906f51Slntue float128 copysignf128(float128 x, float128 y); 183f906f51Slntue 19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 203f906f51Slntue 21330793c9SNick Desaulniers #endif // LLVM_LIBC_SRC_MATH_COPYSIGNF128_H 22