blob: a50d8374584760f999911ba4ec26493ee8338df4 [file] [log] [blame] [edit]
//===-- Implementation of dfmal 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/dfmal.h"
#include "src/__support/math/dfmal.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(double, dfmal,
(long double x, long double y, long double z)) {
return math::dfmal(x, y, z);
}
} // namespace LIBC_NAMESPACE_DECL