blob: 7bc393ab3badc72b2c6bc3eeefcee3982dd6e962 [file] [log] [blame]
felixh56780b0cce82024-01-25 15:04:18 -05001//===-- 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 Hosek5ff3ff32024-07-12 09:28:41 -070012#include "src/__support/macros/config.h"
Guillaume Chatelet53bd4112024-02-29 10:28:53 +010013#include "src/__support/macros/properties/types.h"
felixh56780b0cce82024-01-25 15:04:18 -050014
Petr Hosek5ff3ff32024-07-12 09:28:41 -070015namespace LIBC_NAMESPACE_DECL {
felixh56780b0cce82024-01-25 15:04:18 -050016
17float128 fminf128(float128 x, float128 y);
18
Petr Hosek5ff3ff32024-07-12 09:28:41 -070019} // namespace LIBC_NAMESPACE_DECL
felixh56780b0cce82024-01-25 15:04:18 -050020
21#endif // LLVM_LIBC_SRC_MATH_FMINF128_H