11f20bc2cSlntue //===-- Implementation header for fdimf128 ----------------------*- C++ -*-===// 21f20bc2cSlntue // 31f20bc2cSlntue // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 41f20bc2cSlntue // See https://llvm.org/LICENSE.txt for license information. 51f20bc2cSlntue // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 61f20bc2cSlntue // 71f20bc2cSlntue //===----------------------------------------------------------------------===// 81f20bc2cSlntue 91f20bc2cSlntue #ifndef LLVM_LIBC_SRC_MATH_FDIMF128_H 101f20bc2cSlntue #define LLVM_LIBC_SRC_MATH_FDIMF128_H 111f20bc2cSlntue 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1353bd411eSGuillaume Chatelet #include "src/__support/macros/properties/types.h" 141f20bc2cSlntue 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 161f20bc2cSlntue 171f20bc2cSlntue float128 fdimf128(float128 x, float128 y); 181f20bc2cSlntue 19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 201f20bc2cSlntue 211f20bc2cSlntue #endif // LLVM_LIBC_SRC_MATH_FDIMF128_H 22