xref: /llvm-project/libc/src/math/nextafterf128.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
115a55486SMichael Flanders //===-- Implementation header for nextafterf128 ------------------*- C++-*-===//
215a55486SMichael Flanders //
315a55486SMichael Flanders // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
415a55486SMichael Flanders // See https://llvm.org/LICENSE.txt for license information.
515a55486SMichael Flanders // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
615a55486SMichael Flanders //
715a55486SMichael Flanders //===----------------------------------------------------------------------===//
815a55486SMichael Flanders 
915a55486SMichael Flanders #ifndef LLVM_LIBC_SRC_MATH_NEXTAFTERF128_H
1015a55486SMichael Flanders #define LLVM_LIBC_SRC_MATH_NEXTAFTERF128_H
1115a55486SMichael Flanders 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
1315a55486SMichael Flanders #include "src/__support/macros/properties/types.h"
1415a55486SMichael Flanders 
15*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
1615a55486SMichael Flanders 
1715a55486SMichael Flanders float128 nextafterf128(float128 x, float128 y);
1815a55486SMichael Flanders 
19*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
2015a55486SMichael Flanders 
2115a55486SMichael Flanders #endif // LLVM_LIBC_SRC_MATH_NEXTAFTERF128_H
22