xref: /llvm-project/libc/src/math/nextupf128.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
18ff96eb1SOverMighty //===-- Implementation header for nextupf128 --------------------*- C++ -*-===//
28ff96eb1SOverMighty //
38ff96eb1SOverMighty // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
48ff96eb1SOverMighty // See https://llvm.org/LICENSE.txt for license information.
58ff96eb1SOverMighty // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
68ff96eb1SOverMighty //
78ff96eb1SOverMighty //===----------------------------------------------------------------------===//
88ff96eb1SOverMighty 
98ff96eb1SOverMighty #ifndef LLVM_LIBC_SRC_MATH_NEXTUPF128_H
108ff96eb1SOverMighty #define LLVM_LIBC_SRC_MATH_NEXTUPF128_H
118ff96eb1SOverMighty 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
138ff96eb1SOverMighty #include "src/__support/macros/properties/types.h"
148ff96eb1SOverMighty 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
168ff96eb1SOverMighty 
178ff96eb1SOverMighty float128 nextupf128(float128 x);
188ff96eb1SOverMighty 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
208ff96eb1SOverMighty 
218ff96eb1SOverMighty #endif // LLVM_LIBC_SRC_MATH_NEXTUPF128_H
22