xref: /llvm-project/libc/src/math/nexttowardl.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
10c49fc4cSNishant Mittal //===-- Implementation header for nexttowardl -------------------*- C++ -*-===//
20c49fc4cSNishant Mittal //
30c49fc4cSNishant Mittal // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
40c49fc4cSNishant Mittal // See https://llvm.org/LICENSE.txt for license information.
50c49fc4cSNishant Mittal // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
60c49fc4cSNishant Mittal //
70c49fc4cSNishant Mittal //===----------------------------------------------------------------------===//
80c49fc4cSNishant Mittal 
90c49fc4cSNishant Mittal #ifndef LLVM_LIBC_SRC_MATH_NEXTTOWARDL_H
100c49fc4cSNishant Mittal #define LLVM_LIBC_SRC_MATH_NEXTTOWARDL_H
110c49fc4cSNishant Mittal 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
13*5ff3ff33SPetr Hosek 
14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
150c49fc4cSNishant Mittal 
160c49fc4cSNishant Mittal long double nexttowardl(long double x, long double y);
170c49fc4cSNishant Mittal 
18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
190c49fc4cSNishant Mittal 
200c49fc4cSNishant Mittal #endif // LLVM_LIBC_SRC_MATH_NEXTTOWARDL_H
21