blob: 24ca7b5af3a63b6dca5aeb90d9a06aa5dacb3314 [file] [log] [blame]
//===-- Implementation of nexttowardl function ----------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "src/math/nexttowardl.h"
#include "src/__support/math/nexttowardl.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(long double, nexttowardl, (long double x, long double y)) {
return math::nexttowardl(x, y);
}
} // namespace LIBC_NAMESPACE_DECL