xref: /llvm-project/libc/src/math/totalorderf16.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
1f5dcfb99SOverMighty //===-- Implementation header for totalorderf16 -----------------*- C++ -*-===//
2f5dcfb99SOverMighty //
3f5dcfb99SOverMighty // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4f5dcfb99SOverMighty // See https://llvm.org/LICENSE.txt for license information.
5f5dcfb99SOverMighty // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6f5dcfb99SOverMighty //
7f5dcfb99SOverMighty //===----------------------------------------------------------------------===//
8f5dcfb99SOverMighty 
9f5dcfb99SOverMighty #ifndef LLVM_LIBC_SRC_MATH_TOTALORDERF16_H
10f5dcfb99SOverMighty #define LLVM_LIBC_SRC_MATH_TOTALORDERF16_H
11f5dcfb99SOverMighty 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
13f5dcfb99SOverMighty #include "src/__support/macros/properties/types.h"
14f5dcfb99SOverMighty 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
16f5dcfb99SOverMighty 
17f5dcfb99SOverMighty int totalorderf16(const float16 *x, const float16 *y);
18f5dcfb99SOverMighty 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
20f5dcfb99SOverMighty 
21f5dcfb99SOverMighty #endif // LLVM_LIBC_SRC_MATH_TOTALORDERF16_H
22