felixh5678 | 0b0cce8 | 2024-01-25 15:04:18 -0500 | [diff] [blame] | 1 | //===-- Implementation header for fminf128 ----------------------*- C++ -*-===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | #ifndef LLVM_LIBC_SRC_MATH_FMINF128_H |
| 10 | #define LLVM_LIBC_SRC_MATH_FMINF128_H |
| 11 | |
Petr Hosek | 5ff3ff3 | 2024-07-12 09:28:41 -0700 | [diff] [blame] | 12 | #include "src/__support/macros/config.h" |
Guillaume Chatelet | 53bd411 | 2024-02-29 10:28:53 +0100 | [diff] [blame] | 13 | #include "src/__support/macros/properties/types.h" |
felixh5678 | 0b0cce8 | 2024-01-25 15:04:18 -0500 | [diff] [blame] | 14 | |
Petr Hosek | 5ff3ff3 | 2024-07-12 09:28:41 -0700 | [diff] [blame] | 15 | namespace LIBC_NAMESPACE_DECL { |
felixh5678 | 0b0cce8 | 2024-01-25 15:04:18 -0500 | [diff] [blame] | 16 | |
| 17 | float128 fminf128(float128 x, float128 y); |
| 18 | |
Petr Hosek | 5ff3ff3 | 2024-07-12 09:28:41 -0700 | [diff] [blame] | 19 | } // namespace LIBC_NAMESPACE_DECL |
felixh5678 | 0b0cce8 | 2024-01-25 15:04:18 -0500 | [diff] [blame] | 20 | |
| 21 | #endif // LLVM_LIBC_SRC_MATH_FMINF128_H |