xref: /llvm-project/libc/src/math/nextdown.h (revision 5ff3ff33ff930e4ec49da7910612d8a41eb068cb)
18ff96eb1SOverMighty //===-- Implementation header for nextdown ----------------------*- 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_NEXTDOWN_H
108ff96eb1SOverMighty #define LLVM_LIBC_SRC_MATH_NEXTDOWN_H
118ff96eb1SOverMighty 
12*5ff3ff33SPetr Hosek #include "src/__support/macros/config.h"
13*5ff3ff33SPetr Hosek 
14*5ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL {
158ff96eb1SOverMighty 
168ff96eb1SOverMighty double nextdown(double x);
178ff96eb1SOverMighty 
18*5ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL
198ff96eb1SOverMighty 
208ff96eb1SOverMighty #endif // LLVM_LIBC_SRC_MATH_NEXTDOWN_H
21