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