10b0cce89Sfelixh5678 //===-- Implementation header for fmaxf128 ----------------------*- C++ -*-===// 20b0cce89Sfelixh5678 // 30b0cce89Sfelixh5678 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 40b0cce89Sfelixh5678 // See https://llvm.org/LICENSE.txt for license information. 50b0cce89Sfelixh5678 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 60b0cce89Sfelixh5678 // 70b0cce89Sfelixh5678 //===----------------------------------------------------------------------===// 80b0cce89Sfelixh5678 90b0cce89Sfelixh5678 #ifndef LLVM_LIBC_SRC_MATH_FMAXF128_H 100b0cce89Sfelixh5678 #define LLVM_LIBC_SRC_MATH_FMAXF128_H 110b0cce89Sfelixh5678 12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 1353bd411eSGuillaume Chatelet #include "src/__support/macros/properties/types.h" 140b0cce89Sfelixh5678 15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 160b0cce89Sfelixh5678 170b0cce89Sfelixh5678 float128 fmaxf128(float128 x, float128 y); 180b0cce89Sfelixh5678 19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 200b0cce89Sfelixh5678 210b0cce89Sfelixh5678 #endif // LLVM_LIBC_SRC_MATH_FMAXF128_H 22