blob: 915e206d3f4195f72badf5a4eebbed8f2e6cf650 [file] [log] [blame]
Job Henandez Lara3e3f0c32024-03-25 12:19:10 -07001//===-- Implementation header for fminimumf -------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_LIBC_SRC_MATH_FMINIMUMF_H
11#define LLVM_LIBC_SRC_MATH_FMINIMUMF_H
12
Petr Hosek5ff3ff32024-07-12 09:28:41 -070013#include "src/__support/macros/config.h"
14
15namespace LIBC_NAMESPACE_DECL {
Job Henandez Lara3e3f0c32024-03-25 12:19:10 -070016
17float fminimumf(float x, float y);
18
Petr Hosek5ff3ff32024-07-12 09:28:41 -070019} // namespace LIBC_NAMESPACE_DECL
Job Henandez Lara3e3f0c32024-03-25 12:19:10 -070020
21#endif // LLVM_LIBC_SRC_MATH_FMINIMUMF_H